Discover and connect APIs, webhooks, and automation tools
Accept payments, manage subscriptions, handle refunds. RESTful API with webhooks for real-time events.
/v1/charges?limit=10curl -X GET https://api.stripe.com/v1/charges \ -u sk_test_4eC39HqLyjWDarjtT1zdp7dc: \ -d limit=10
Send SMS, make calls, verify phone numbers. Programmable communications API.
/2010-04-01/Accounts/{AccountSid}/Messages.jsoncurl -X POST https://api.twilio.com/2010-04-01/Accounts/AC.../Messages.json \ -u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \ --data-urlencode "Body=Hello from ConnectHub" \ --data-urlencode "From=+15551234567" \ --data-urlencode "To=+15559876543"
Chat completions, embeddings, function calling. Rate limit: 10,000 RPM on Tier 3.
/v1/chat/completionscurl https://api.openai.com/v1/chat/completions \
-H "Authorization: Bearer sk-proj-..." \
-H "Content-Type: application/json" \
-d '{"model": "gpt-4-turbo", "messages": [{"role": "user", "content": "Hello"}]}'
Use this endpoint to test your webhook integration:
POST /api/webhook-test
Content-Type: application/json
{"event": "test", "data": {"key": "value"}}
Response: Returns the received payload with a timestamp and signature verification result.