Corteksa Documentation

Build anything on your CRM.

A single REST API for records, messaging, billing, and AI — plus the guides and data model to go with it. Everything you need to integrate, extend, and automate Corteksa.

Terminal
# Read the records of any object
$ curl https://acme.corteksa.com/api/v1/object/data/contacts \
    -H "X-Api-Key: crtk_live_7f3c…"

# 200 OK
{
  "data": [{
    "slug": "jane-doe-a1b2",
    "name": "Jane Doe"
  }],
  "pagination": { "total": 128 }
}