curl --request GET \
--url https://ingest.hyperline.co/v1/events \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"id": "evt_abc123def456",
"event_type": "api_call",
"timestamp": "2024-01-15T10:30:00.000Z",
"customer_id": "cus_xyz789",
"record_id": "rec_123",
"record": {
"id": "rec_123",
"endpoint": "/api/users",
"method": "GET"
}
}
]
}Retrieve billable events filtered by event type.
curl --request GET \
--url https://ingest.hyperline.co/v1/events \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"id": "evt_abc123def456",
"event_type": "api_call",
"timestamp": "2024-01-15T10:30:00.000Z",
"customer_id": "cus_xyz789",
"record_id": "rec_123",
"record": {
"id": "rec_123",
"endpoint": "/api/users",
"method": "GET"
}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
0 <= x <= 100x >= 0Sort direction.
asc, desc "desc"
Field used to sort the results.
timestamp Event type to filter by
"api_call"
Filter by customer ID
"cus_xyz789"
Filter by record ID. Supports comma-separated list for multiple records.
"rec_123"
Filter events with timestamp greater than or equal to this ISO8601 date.
"2024-01-01T00:00:00Z"
Filter events with timestamp less than or equal to this ISO8601 date.
"2024-01-31T23:59:59Z"
Was this page helpful?