API & Developer Docs

Build on top of Atlas.

Full REST + GraphQL APIs over the customer graph. Webhooks, OAuth 2.0, sandbox tenants. SDKs in TypeScript, Python, Ruby, Go, Java, .NET, Swift and Kotlin.

QUICKSTARTCURL
# Authenticate
curl https://api.tracketerp.com/v4/atlas/customers \
  -H "Authorization: Bearer $TRACKET_TOKEN" \
  -G --data-urlencode "q=Saurashtra Foods"

# Response
{
  "id": "cus_8z2Lk…",
  "name": "Saurashtra Foods",
  "plan": "enterprise",
  "mrr_cents": 4840000,
  "open_deals": 2,
  "open_tickets": 0
}
GRAPHQL · DEAL TIMELINEGRAPHQL
query DealTimeline($id: ID!) {
  deal(id: $id) {
    id
    name
    amount_cents
    stage
    customer {
      # Atlas joins automatically
      invoices(limit: 5) { id, amount_cents, status }
      tickets(limit: 5) { id, subject, sla_breach }
      projects { id, name, hours_logged }
    }
  }
}

Got a question we didn't answer?

Email developer relations Help center