Skip to main content
GET
/
venue-events
/
{id}
Get Venue Event
curl --request GET \
  --url https://api.agg.market/venue-events/{id} \
  --header 'x-app-id: <api-key>'
{
  "id": "<string>",
  "externalIdentifier": "<string>",
  "title": "<string>",
  "image": "<string>",
  "venue": "kalshi",
  "categories": [
    {
      "id": "<string>",
      "category": {
        "id": "<string>",
        "name": "<string>",
        "parentId": "<string>",
        "eventCount": 123
      }
    }
  ],
  "description": "<string>",
  "volume": 1,
  "status": "open",
  "startDate": "<string>",
  "endDate": "<string>",
  "creationDate": "<string>",
  "slug": "<string>",
  "subtitle": "<string>",
  "updatedAt": "<string>"
}

Authorizations

x-app-id
string
header
required

Your application ID. Required for all app-tier and user-tier routes.

Path Parameters

id
string
required

Response

200

id
string
required
externalIdentifier
string
required
title
string
required
image
string | null
required
venue
enum<string>
required
Available options:
kalshi,
polymarket,
limitless,
opinion
categories
object[]
required
description
string | null
volume
number | null
Required range: x >= 0
status
enum<string>
Available options:
open,
closed,
resolved,
unopened,
paused
startDate
string | null
endDate
string | null
creationDate
string | null
slug
string | null
subtitle
string | null
updatedAt
string | null