> Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

---
title: "Get event details"
description: "Get event with all linked markets"
api: "GET /api/v1/events/{id}"
gridGap: 30
---

<Aside full>
  <RequestExample>
    ```bash title="cURL" lines=false
    curl -X GET "https://api.adjacent.markets/api/v1/events/<id>" \
      -H "Authorization: Bearer <token>"
    ```
  </RequestExample>
</Aside>

<OpenAPIEndpoint {...{"method":"get","path":"/api/v1/events/{id}","summary":"Get event details","description":"Get event with all linked markets","parameters":[{"name":"id","in":"path","required":true,"description":"Event ID","schema":{"type":"string"}}],"responses":[{"status":"200","description":"Event details","schema":{"type":"object","properties":{"event_id":{"type":"string"},"name":{"type":"string"},"description":{"type":["string","null"]},"category":{"type":"string"},"markets":{"type":"array","items":{"type":"object","properties":{"market_id":{"type":"string"},"platform":{"type":"string"},"latest_price":{"type":["number","null"]},"total_volume":{"type":["number","null"]}}}}}},"examples":[]},{"status":"404","description":"Event not found","examples":[]}],"security":[{"name":"bearerAuth","type":"http","scheme":"bearer","in":"header","description":"Clerk JWT Bearer token"}],"servers":[{"url":"https://api.adjacent.markets","description":"API server"}]}} />
