Skip to content

API Reference Overview

The Chronary REST API provides programmatic access to calendars, events, availability, webhooks, and more.

https://api.chronary.ai/v1

All endpoints are versioned under /v1/.

Include your API key in the Authorization header:

Authorization: Bearer chr_sk_live_your_key_here

See Authentication for details on test vs live mode.

  • Content-Type: application/json for POST and PATCH requests
  • Query parameters: Used for GET requests (filtering, pagination)
  • Path parameters: Resource IDs in the URL path

All responses return JSON with consistent structure:

Single resource:

{
"id": "agt_a1b2c3d4",
"name": "Sales Agent",
"type": "ai",
"status": "active",
"created_at": "2026-04-04T12:00:00Z",
"updated_at": "2026-04-04T12:00:00Z"
}

List response:

{
"data": [ ... ],
"total": 42,
"limit": 50,
"offset": 0
}

All list endpoints support limit and offset query parameters:

ParameterTypeDefaultRange
limitinteger501–200
offsetinteger00+

Errors follow a standard format:

{
"error": {
"type": "not_found",
"message": "Agent not found",
"request_id": "req_abc123"
}
}

See Error Codes for all error types.

  • 10 requests per second per API key
  • Monthly API call quotas vary by plan

See Rate Limits for details.