Response Format
All Fincept API endpoints return standardized JSON responses with consistent structure.Success Response
Error Response
Common Status Codes
Learn more →
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Standard JSON response structure and data types
{
"success": true,
"message": "Operation completed successfully",
"data": {
// Endpoint-specific data
}
}
{
"success": false,
"message": "Error summary",
"detail": "Detailed explanation of what went wrong"
}
| Code | Meaning | Example |
|---|---|---|
| 200 | Success | Request completed |
| 400 | Bad Request | Invalid parameters |
| 401 | Unauthorized | Missing/invalid API key |
| 402 | Payment Required | Insufficient credits |
| 403 | Forbidden | Tier access required |
| 429 | Too Many Requests | Rate limit exceeded |
| 500 | Server Error | Internal error |
