RevKeen Docs
Api reference

List automations

List saved Assistant automations for the authenticated merchant.


Related endpoints

  • POST /automations — Create an automation
  • GET /automations/{id} — Retrieve an automation
  • GET /automations/{id}/runs — List runs for an automation
  • POST /automations/{id}/runs — Run an automation
  • GET /automations/{id}/runs/{runId} — Retrieve a run
  • GET /automations/approvals — List approvals
  • POST /automations/approvals/{approvalId}/approve — Approve an automation approval
  • POST /automations/approvals/{approvalId}/reject — Reject an automation approval

Pagination

Offset-based with limit (default 25, max 100) and offset. The response pagination block includes total and hasMore. See the pagination guide for SDK auto-paging helpers.

GET
/automations
x-api-key<token>

Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.

In: header

Query Parameters

status?string
trigger_type?string
limit?number
Default25
Range1 <= value <= 100

Response Body

application/json

curl "https://api.revkeen.com/v2/automations" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "object": "list",
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "object": "automation",
      "name": "string",
      "description": "string",
      "status": "string",
      "trigger_type": "string",
      "timezone": "string",
      "cron_expression": "string",
      "risk_profile": "string",
      "current_version": 0,
      "objective": "string",
      "created_at": "string",
      "updated_at": "string"
    }
  ]
}