API
Updated 1/28/2026
-
Create an account
Sign up at https://www.ats.cx and create your organization. -
Create an API key
Go to Dashboard → API Keys → Create API Key. Copy it once. -
Make your first GraphQL request
Endpoint:https://api.ats.cx/v2/graphqlExample (curl):
- POST with headers:
Authorization: Bearer YOUR_API_KEYContent-Type: application/json
- Body:
{ "query": "query { jobs { id title status } }" }
- POST with headers:
-
Create data
Example mutation:{ "query": "mutation { createJob(data: { title: \"Senior Engineer\" }) { id title } }" } -
Use SDKs (optional) If you’re using an SDK, set
ATS_API_KEYin your environment and initialize the client. -
Webhooks (optional) Create a webhook subscription to receive real‑time events like
application.created. -
Rate limits Keys are scoped and rate‑limited. If you hit
429, back off and retry.