EdgeCron API Docs
API ReferenceEvent Triggers

List events

GET /events

List events

List events.

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

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.
event_namequerystringNo-
statusquerystringNoCurrent lifecycle state.

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",
        "event_name": "invoice.paid",
        "event_key": "tenant-a",
        "payload": {},
        "status": "string",
        "created_at": "2026-07-01T12:00:00Z"
      }
    ]
  }
}

Schema

ParametersTypeRequiredDescription
idintegerNoResource identifier.
app_idstringNoApplication identifier.
event_namestringNo-
event_keystringNo-
payloadobjectNoJSON payload forwarded to the target endpoint.
statusstringNoCurrent lifecycle state.
created_atstring (date-time)NoCreation timestamp.