Skip to content
Sendora
Create account
Reference

REST API reference

Sendora is JSON over HTTPS. Everything the dashboard does, you can do with a single curl.

Base URL

https://api.sendoracloud.com/v1

Authentication

Bearer token. Use secret keys server-side, public keys in browsers or mobile apps.

Authorization: Bearer sk_live_...

Send an event

curl -X POST https://api.sendoracloud.com/v1/events \
  -H "Authorization: Bearer $SENDORA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "actor":  { "id": "u_123" },
    "verb":   "order.placed",
    "object": { "id": "ord_81", "amount": 4200 }
  }'

Errors

Every error response has code, message, and a request_id.

{
  "error": {
    "code": "rate_limited",
    "message": "Too many requests",
    "request_id": "req_9m3"
  }
}

OpenAPI spec

Full spec at https://api.sendoracloud.com/openapi.json — import it into Postman, Insomnia, or your code generator of choice.