Headers
-
Broker access key identifier.
Format should match the following pattern:
^[A-Za-z0-9._~-]{1,64}$. -
Keyed BLAKE2b-256 signature (hex lowercase, 64 characters).
Format should match the following pattern:
^[0-9a-f]{64}$. -
RFC3339 timestamp with milliseconds (e.g., 2025-10-30T06:00:34.075Z). Must be within clock_skew_tolerance (default 5m) of server time.
GET
/events/{event_id}
curl \
--request GET 'https://api.example.com/v1/events/{event_id}' \
--header "PRE-ACCESS-KEY: string" \
--header "PRE-ACCESS-SIGNATURE: string" \
--header "PRE-ACCESS-TIMESTAMP: 2026-05-04T09:42:00Z"
Response examples (200)
{
"event_id": "string",
"title": {
"en": "string",
"pt": "string",
"id": "string"
},
"series_title": {
"en": "string",
"pt": "string",
"id": "string"
},
"rules_primary": {
"en": "string",
"pt": "string",
"id": "string"
},
"category": "string",
"image_url": "string",
"series": "",
"status": "open",
"void_reason": "string",
"created_at": "2026-05-04T09:42:00Z",
"opens_at": "2026-05-04T09:42:00Z",
"closes_at": "2026-05-04T09:42:00Z",
"settlement_sources": [
{
"name": "string",
"url": "string",
"underlying": {
"base_currency": "string",
"quote_currency": "string"
}
}
],
"markets": [
{
"market_id": "string",
"event_id": "string",
"market_index": 42,
"title": {
"en": "string",
"pt": "string",
"id": "string"
},
"yes_sub_title": {
"en": "string",
"pt": "string",
"id": "string"
},
"no_sub_title": {
"en": "string",
"pt": "string",
"id": "string"
},
"lower_inclusive": true,
"upper_inclusive": true,
"status": "unopened",
"status_revision": 42,
"result": "yes",
"created_at": "2026-05-04T09:42:00Z",
"opens_at": "2026-05-04T09:42:00Z",
"closes_at": "2026-05-04T09:42:00Z",
"expected_expiration_time": "2026-05-04T09:42:00Z",
"settlement_timer_seconds": 42,
"can_close_early": true,
"early_close_condition": "string",
"strike_type": "greater",
"floor_strike": {
"units": 42,
"nanos": 42
},
"cap_strike": {
"units": 42,
"nanos": 42
},
"custom_strike": "string",
"expiration_value": "string",
"settlement_price": {
"units": 42,
"nanos": 42
}
}
]
}
Response examples (400)
{
"error_code": "string",
"message": "string",
"details": {}
}
Response examples (404)
{
"error_code": "string",
"message": "string",
"details": {}
}
Response examples (503)
{
"error_code": "string",
"message": "string",
"details": {}
}