API ReferenceSubscription
Get resource limits
GET /subscription/resource-limits
Get resource limits
Resource limits.
https://api.edgecron.com/v1/subscription/resource-limits
Authentication required
Send `X-Key-ID`, `X-Timestamp`, and `X-Signature` with every request. The signature is lowercase hex HMAC-SHA256 over `timestamp + "\n" + payload`.
Parameters
This endpoint does not define path or query parameters.
Request body
This endpoint does not require a JSON request body.
Response
All successful responses use the EdgeCron API envelope.
{
"code": 0,
"message": "success",
"request_id": "req_abc123",
"data": {
"max_cron_jobs": 1,
"current_cron_jobs": 1,
"max_endpoints": 1,
"current_endpoints": 1,
"log_retention_days": 1
}
}Schema
| Parameters | Type | Required | Description |
|---|---|---|---|
max_cron_jobs | integer | No | Maximum cron jobs allowed, -1 = unlimited |
current_cron_jobs | integer | No | Current active cron jobs count |
max_endpoints | integer | No | Maximum webhook endpoints, -1 = unlimited |
current_endpoints | integer | No | Current active endpoints count |
log_retention_days | integer | No | Days to retain delivery logs |