Skip to main content
Use these examples as a starting point for your integration. Replace {tenant} with your tenant subdomain and keep API keys on the server side.

Send A Text Message

curl -X POST "https://{tenant}.sinjapp.org/api/v1/messages" \
  -H "X-Api-Key: {tenant_api_key}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{
    "sender_phone": "{sender_phone}",
    "to_phone": "{recipient_phone}",
    "type": "text",
    "content": "Hello from Sinjapp Business"
  }'

Check Contact Reachability

curl "https://{tenant}.sinjapp.org/api/v1/contacts/lookup?phone={recipient_phone}&sender_phone={sender_phone}" \
  -H "X-Api-Key: {tenant_api_key}" \
  -H "Accept: application/json"