API Overview

Introduction to the Syntrigen API

API Overview

Build custom integrations with the Syntrigen REST API.

Base URL

https://api.syntrigen.com/v2

Authentication

All API requests require authentication via Bearer token:

curl https://api.syntrigen.com/v2/me \
  -H "Authorization: Bearer YOUR_API_KEY"

Response Format

All responses are JSON:

{
  "data": { ... },
  "meta": {
    "page": 1,
    "per_page": 20,
    "total": 100
  }
}

Error Handling

Errors follow standard HTTP codes:

| Code | Meaning | |------|---------| 400Bad Request 401Unauthorized 403Forbidden 404Not Found 429Rate Limited | 500 | Server Error |

Rate Limits

- Standard: 100 requests/minute - Pro: 1000 requests/minute - Enterprise: Custom limits

SDKs

Official SDKs available for: - JavaScript/TypeScript - Python - Ruby - Go - PHP

Was this helpful?

Let us know if this article helped you