Skip to content

Get Event

Fetches full metadata for a sport event, including its category, status, venues, and optional child events or questions.

POST/event/v1/getevent
Terminal window
curl -X POST https://api.juspredict.com/event/v1/getevent \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"event_id": "event-uuid",
"get_parent_event": true,
"get_child_events": true,
"get_event_questions": true
}'
FieldRequirement
event_idMust be a valid UUID.
{
"status": { "type": "SUCCESS" },
"event": {
"id": "event-uuid",
"name": "World Cup 2025",
"category": 1,
"status": 2,
"start_date": 1713441600,
"end_date": 1713528000
},
"questions_count": 5,
"questions": [
{
"question_id": "q-uuid",
"name": "Who will win the toss?",
"status": 1
}
]
}
FieldTypeDescription
statusStatusOperation status.