Axis ERPDocumentation
Ctrl+K

API Guide

The Axis API exposes business entities such as contacts, leads, quotations, and invoices over HTTPS JSON endpoints.

Authentication

Use Bearer tokens for all requests. Tokens should be generated from your account security page and rotated regularly.

Example request

curl -X GET https://your-axis-instance.example.com/api/v1/leads \
  -H "Authorization: Bearer <YOUR_TOKEN>" \
  -H "Accept: application/json"

Pagination

Collection endpoints support page and limit query parameters. Default limit is 50 items.