API Reference
Get Organization Limits
GET /api/v1/organizations/limits — your organization's and key's rate limits.
Returns the rate limits that apply to your organization and to the calling API key, plus the current file-upload posture. Useful as a cheap way to verify a new key works (see Quickstart).
GET /api/v1/organizations/limitsNo parameters — the organization and key are both derived from the X-API-Key header.
Response
200 OK
{
"rate_limits": {
"org_rpm": 1000,
"key_rpm": null
},
"file_uploads": {
"enabled": false,
"max_file_size_mb": 10,
"max_total_size_mb": 50,
"max_files_per_request": 20,
"note": "File upload support is not yet enabled in this version."
}
}rate_limits.org_rpm— your organization's requests-per-minute limit (see Rate Limiting).rate_limits.key_rpm— the calling key's own limit, ornullif the key has no per-key limit configured (only the organization limit applies).file_uploads.enabledis currently alwaysfalse— file attachments aren't supported by any execution endpoint yet. The otherfile_uploadsfields describe the limits that will apply once uploads are enabled; ignore them until then.
Example
curl https://api.elizon.com/api/v1/organizations/limits \
-H "X-API-Key: elz_your_key_here"