RevKeen Docs
Api reference

Retrieve an event

Retrieves the details of an event by its ID.


Related endpoints

  • GET /events — List events
  • POST /events/{id}/resend — Resend webhook for an event
  • POST /events/test — Create a test event

Common errors

  • 401 unauthenticated — missing, malformed, or revoked API key.
  • 404 resource_missing — the referenced resource does not exist or is not visible to your key.
GET
/events/{id}
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

Path Parameters

id*string

Event ID

Formatuuid

Response Body

application/json

application/json

application/json

curl "https://api.revkeen.com/v2/events/00000000-0000-0000-0000-000000000000" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "object": "event",
  "type": "invoice.paid",
  "data": {
    "object": null,
    "previous_attributes": null
  },
  "request": {
    "id": "string",
    "idempotency_key": "string"
  },
  "pending_webhooks": 0,
  "api_version": "2026-01-15",
  "livemode": true,
  "created": 1704067200
}
{
  "error": {
    "type": "string",
    "code": "string",
    "message": "string",
    "param": "string"
  }
}
{
  "error": {
    "type": "string",
    "code": "string",
    "message": "string",
    "param": "string"
  }
}