Skip to content

API Playground

Coming Soon

The interactive API Playground is currently under development. It will allow you to test API endpoints directly from the browser without writing any code.

Try the API Now

In the meantime, you can test SendAPI endpoints using:

cURL

Copy any example from the API docs and run it in your terminal:

bash
curl -X POST https://sendapi.co/v1/sms/send \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"to": "+1234567890", "message": "Hello from SendAPI!"}'

Postman

Import the endpoint details into Postman for a visual interface. See the Postman Collection page for setup instructions.

HTTPie

bash
http POST https://sendapi.co/v1/sms/send \
  Authorization:"Bearer sk_live_YOUR_API_KEY" \
  to="+1234567890" \
  message="Hello from SendAPI!"

API Endpoints Quick Reference

ChannelSend EndpointDocs
SMSPOST /v1/sms/send
WhatsAppPOST /v1/whatsapp/send
EmailPOST /v1/email/send
OTPPOST /v1/verify/send

Released under the MIT License.