> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sportsapipro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Full Event Detail

> Complete event payload — 1,000+ markets, weather, venue, win probability

## GET /api/v1/event/{eventId}

Returns the full event payload — every betting market (1,000+ for football top fixtures), grouped market categories, period sub-games, weather, venue, round, and win probability.

```bash theme={null}
curl -H "x-api-key: YOUR_API_KEY" \
  https://api.sportsapipro.com/v5/event/716611045
```

### Path Parameters

<ParamField path="eventId" type="number" required>Event ID from any list endpoint (top, league, live).</ParamField>

### Response

```json theme={null}
{
  "data": {
    "id": 716611045,
    "sportId": 1,
    "leagueId": 2708736,
    "leagueName": "World Cup 2026",
    "homeTeam": "Spain",
    "awayTeam": "Saudi Arabia",
    "startTime": 1782057600,
    "startTimeISO": "2026-06-21T16:00:00.000Z",
    "marketCount": 1270,
    "winProbability": { "P1": 0.89, "P2": 0.03, "PX": 0.08 },
    "venue": "Mercedes-Benz (Atlanta)",
    "round": "Group Stage. Group H. Round 2",
    "matchInfo": {
      "round": "Group Stage. Group H. Round 2",
      "venue": "Mercedes-Benz (Atlanta)",
      "temperature": "+27°C",
      "weatherDesc": "Gloomy",
      "windSpeed": "11",
      "windDirection": "SW wind, m/s",
      "pressure": "761",
      "humidity": "65",
      "precipitation": "5"
    },
    "marketCategories": [
      { "id": 2, "name": "Popular", "count": 305 },
      { "id": 3, "name": "Total", "count": 102 },
      { "id": 4, "name": "Handicap", "count": 24 },
      { "id": 6, "name": "Goals", "count": 239 },
      { "id": 12, "name": "Result + Total", "count": 146 }
    ],
    "markets": [
      {
        "id": 1,
        "name": "Full Time Result",
        "markets": [
          { "type": 1, "odds": 1.105, "isMainLine": false },
          { "type": 2, "odds": 11.7, "isMainLine": false },
          { "type": 3, "odds": 38, "isMainLine": false }
        ]
      },
      {
        "id": 17,
        "name": "Match Total",
        "markets": [
          { "type": 9, "odds": 1.93, "isMainLine": true },
          { "type": 10, "odds": 1.93, "isMainLine": true }
        ]
      }
    ],
    "subGames": [
      { "id": 12345, "name": "1st Half", "period": "1st Half", "marketCount": 80 },
      { "id": 12346, "name": "2nd Half", "period": "2nd Half", "marketCount": 60 }
    ],
    "odds": { "1x2": { "home": 1.105, "draw": 11.7, "away": 38 } }
  }
}
```

<ResponseField name="data.marketCount" type="number">Total betting markets available (often 1,000+).</ResponseField>
<ResponseField name="data.winProbability" type="object">`P1` = home win, `PX` = draw, `P2` = away win (each 0–1).</ResponseField>
<ResponseField name="data.matchInfo" type="object">Venue, weather, temperature, wind, humidity, precipitation.</ResponseField>
<ResponseField name="data.marketCategories" type="array">Market groups with their counts — use to build tabbed UIs.</ResponseField>
<ResponseField name="data.markets" type="array">All markets grouped by market type.</ResponseField>
<ResponseField name="data.subGames" type="array">Period-specific sub-markets (1st Half, 2nd Half, etc.).</ResponseField>
<ResponseField name="data.odds" type="object">Pre-parsed quick-access main odds — see [Odds Object](/api-reference/v5-1xbet/models#odds-object).</ResponseField>

### Market Group Reference

| Group ID | Name             | Group ID | Name                  |
| -------- | ---------------- | -------- | --------------------- |
| 1        | Full Time Result | 62       | Both Teams To Score   |
| 2        | Handicap         | 99       | Asian Total           |
| 8        | Double Chance    | 119      | Asian Handicap        |
| 15       | First Half Total | 130      | First Half Result     |
| 17       | Match Total      | 136      | Goals Odd/Even        |
| 19       | Draw No Bet      | 763      | Second Half Total     |
| 20       | Correct Score    | 858      | Individual Total Home |

### Market Selection Types

| Type | Meaning            | Type | Meaning       |
| ---- | ------------------ | ---- | ------------- |
| 1    | Home Win           | 9    | Over (Total)  |
| 2    | Draw               | 10   | Over (alt)    |
| 3    | Away Win           | 11   | Under (Total) |
| 4    | 1X (Double Chance) | 12   | Under (alt)   |
| 5    | X2 (Double Chance) | 14   | BTTS          |
| 6    | 12 (Double Chance) | 15   | Odd/Even      |
| 7    | Handicap Home      | 181  | DNB Home      |
| 8    | Handicap Away      | 182  | DNB Away      |

<Note>**Cache TTL:** 60 seconds.</Note>
