EdgeCron API Docs
API ReferenceSchedule Triggers

List schedules

GET /schedules

List schedules

List schedules.

GET
https://api.edgecron.com/v1/schedules

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

ParametersInTypeRequiredDescription
pagequeryintegerNoDefault: 1.
page_sizequeryintegerNoDefault: 20.
statusqueryactive / pausedNoAllowed: active, paused.

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": {
    "total": 1,
    "page": 1,
    "page_size": 20,
    "items": [
      {
        "id": 101,
        "app_id": "app_123",
        "name": "billing-webhook",
        "cron_expr": "*/5 * * * *",
        "timezone": "Asia/Shanghai",
        "payload": {},
        "status": "active",
        "next_run_at": "2026-07-01T12:00:00Z",
        "created_at": "2026-07-01T12:00:00Z",
        "updated_at": "2026-07-01T12:00:00Z",
        "endpoint_ids": [
          1
        ],
        "endpoint_names": {}
      }
    ]
  }
}

Schema

ParametersTypeRequiredDescription
idintegerNoResource identifier.
app_idstringNoApplication identifier.
namestringNo-
cron_exprstringNoExample: */5 * * * *.
timezonestringNoExample: Asia/Shanghai.
payloadobjectNoJSON payload forwarded to the target endpoint.
statusactive / paused / deletedNoAllowed: active, paused, deleted.
next_run_atstring (date-time)No-
created_atstring (date-time)NoCreation timestamp.
updated_atstring (date-time)NoLast update timestamp.
endpoint_idsinteger[]NoTarget endpoint IDs. Empty = all active endpoints
endpoint_namesRecord string to stringNoEndpoint ID → name map for display convenience