Skip to main content
GET
/
api
/
v1
/
events
TypeScript SDK
import { cuey } from 'cuey';

const { data: events, pagination } = await cuey.events.list({
  page: 0,
  limit: 10,
  status: 'pending'
});
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "cron_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "retry_of": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "scheduled_at": "2023-11-07T05:31:56Z",
      "executed_at": "2023-11-07T05:31:56Z",
      "status": "pending",
      "webhook_url": "<string>",
      "method": "GET",
      "headers": {},
      "payload": {},
      "retry_config": {
        "maxRetries": 5,
        "backoffMs": 2550,
        "backoffType": "exponential"
      },
      "response_status": 123,
      "response_headers": {},
      "response_body": "<string>",
      "response_duration": 123,
      "response_error": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header as: Bearer <your-api-key>

Query Parameters

page
integer
default:0

Page number (0-indexed)

Required range: x >= 0
limit
integer
default:100

Items per page

Required range: 1 <= x <= 1000
status
enum<string>

Filter by status

Available options:
pending,
processing,
success,
failed
cron_id
string<uuid>

Filter by cron ID

Response

Success

data
object[]
required
pagination
object
required