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
| Channel | Send Endpoint | Docs |
|---|---|---|
| SMS | POST /v1/sms/send | → |
POST /v1/whatsapp/send | → | |
POST /v1/email/send | → | |
| OTP | POST /v1/verify/send | → |