List events
Retrieves a paginated list of events belonging to your Billy organization. Each item carries flat session summary fields; use GET /v1/events/{event_id}/sessions to enumerate the sessions of an event.
Preview release
preview release target. It is also part of a released version — switch above for the copy you can depend on. Preview has no stability promise: its routes and payloads can change without notice, so pin a dated release before you depend on one.Retrieves a paginated list of events belonging to your Billy organization. Each item carries flat session summary fields; use GET /v1/events/{event_id}/sessions to enumerate the sessions of an event.
Authorization
HTTPBearer API key authentication. Format: Bearer billy:o:<organization_id>:<api_key>
Example: Bearer billy:o:yyyyyyyyyyyyyyyy:xxxxxxxxxxxxxxxxx
In: header
Query Parameters
Page index (1-based, e.g., 1 for first page, 2 for second page)
1 <= value1Maximum number of records to return
Return results where startAt is at or after this value. For datetime fields, use ISO 8601 format with timezone offset (e.g. 2026-03-01T00:00:00+02:00).
Return results where startAt is at or before this value. For datetime fields, use ISO 8601 format with timezone offset (e.g. 2026-03-01T00:00:00+02:00).
Header Parameters
Requested API version. Current context: preview.
"preview"Response Body
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/events" \ -H "Billy-API-Version: preview"{ "items": [ { "id": "evt_64f1c2a9e8b4a12f9c0a1234", "createdAt": "2025-01-15T10:42:31.000Z", "updatedAt": "2025-01-20T09:12:05.000Z", "title": "Electro Night Festival", "description": "An immersive electronic music experience with top international DJs.", "imageUrl": "https://cdn.example.com/events/electro-night/banner.jpg", "venueName": "La Grande Halle", "venueAddress": { "addressLine1": "211 Avenue Jean Jaurès", "addressLine2": null, "city": "Paris", "postalCode": "75019", "countryCode": "FR" }, "eventTimezone": "Europe/Paris", "currency": "EUR", "sessionCount": 1, "firstSessionStartAt": "2025-03-21T19:30:00+01:00", "lastSessionStartAt": "2025-03-21T19:30:00+01:00", "nextSessionStartAt": null, "nextSessionId": null, "tags": [ "concert", "electro" ] } ], "page": 1, "perPage": 10, "totalPages": 1}