Skip to main content
GET
/
v1
/
events
/
{event_id}
Fetch a single event by event_id
curl --request GET \
  --url https://api.quivly.com/v1/events/{event_id} \
  --header 'Authorization: Bearer <token>'
{
  "event_id": "abc-123",
  "customer_id": "pied-piper",
  "event_code": "api_call",
  "event_type": "credit",
  "created_at": "2025-03-25T12:00:00Z",
  "event_properties": {
    "tokens": "300",
    "status_code": 200,
    "region": "us-west-1",
    "response_time_ms": 120
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

event_id
string
required

Unique identifier for the event.

Response

Event found.

event_id
string
required

Unique identifier for the event.

customer_id
string
required

Unique identifier for the customer.

event_code
string
required

Metric code this event is counted towards.

event_type
enum<string>
required

credit or debit.

Available options:
credit,
debit
created_at
string<date-time>
required

Timestamp in RFC 3339/ISO 8601, UTC.

event_properties
object

Custom properties for aggregation, filtering, and grouping.