API Reference
Connect Qanomy case scheduling, hearing reminders, and client directories with your custom tools using REST endpoints.
Authentication
Every API request requires an authentication token passed in the header. To generate a token, navigate to Settings > Developer API in your dashboard.
Authorization: Bearer <your_api_token>
Fetch Case Details
Fetch active case timelines, client associations, and hearing schedules.
GET /api/v1/cases
Response: 200 OK
{
"success": true,
"cases": [{ "id": "1", "title": "State vs. Kamran", "status": "ACTIVE" }]
}SDKs & Libraries
We support standard integration wrappers in Node.js, Python, and Go.
Request SDK Access