API Reference
Build on Axially
REST API. Bearer + API key authentication. Per-route idempotency. RBAC enforced. OpenAPI 3.1.
Authentication
API key (recommended for server-to-server)
curl https://app.axially.com/api/v1/sales/deals \ -H "x-api-key: sk_live_..."
OAuth 2.0 (user delegation)
PKCE flow for partner OAuth registration. Contact sales.
Idempotency
Every POST / PUT / PATCH accepts Idempotency-Key header. Replays inside 10-minute TTL return cached response.
curl -X POST https://app.axially.com/api/sales/deals \
-H "x-api-key: sk_live_..." \
-H "Idempotency-Key: 7f3a..." \
-H "content-type: application/json" \
-d '{"name":"Acme Renewal","value":240000}'Rate Limits
| Plan | Reads / min | Writes / min |
|---|---|---|
| Free | 60 | 30 |
| Starter | 600 | 120 |
| Business | 6,000 | 1,200 |
| Enterprise | Custom | Custom |
Webhooks
HMAC-SHA256 signed
Every outbound webhook includes x-axially-signature = hex(hmac_sha256(secret, raw_body)). Verify before processing. Keys rotate w/ 7-day grace.
Endpoints
Work
/api/v1/work/projectsGET · POST · PATCH · DELETE
Sales
/api/v1/sales/dealsGET · POST · PATCH · DELETE
Finance
/api/v1/finance/invoicesGET · POST · PATCH · DELETE
People
/api/v1/people/employeesGET · POST · PATCH · DELETE
Talent
/api/v1/talent/candidatesGET · POST · PATCH · DELETE
Intelligence
/api/v1/intelligence/agentsGET · POST · PATCH · DELETE
Full reference: OpenAPI 3.1 spec (JSON) · User guides