> ## 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.

# Sports

> List of all 58 supported sports with IDs and slugs

## GET /api/v1/sports

Returns every sport supported by V5.

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

### Response

```json theme={null}
{
  "data": [
    { "id": 1, "name": "Football", "slug": "football" },
    { "id": 2, "name": "Ice Hockey", "slug": "ice-hockey" },
    { "id": 3, "name": "Basketball", "slug": "basketball" },
    { "id": 4, "name": "Tennis", "slug": "tennis" }
  ]
}
```

<ResponseField name="data[].id" type="number">Sport ID. Use for all sport-filtered endpoints (`?sport=`, `/api/v1/sports/{id}/leagues`).</ResponseField>
<ResponseField name="data[].name" type="string">Display name.</ResponseField>
<ResponseField name="data[].slug" type="string">URL-safe slug used in [shorthand routes](/api-reference/v5-1xbet/shorthand).</ResponseField>

### Sport ID Reference

| ID | Sport        | ID | Sport             | ID  | Sport        |
| -- | ------------ | -- | ----------------- | --- | ------------ |
| 1  | Football     | 13 | American Football | 40  | Esports      |
| 2  | Ice Hockey   | 14 | Futsal            | 41  | Golf         |
| 3  | Basketball   | 17 | Water Polo        | 56  | Martial Arts |
| 4  | Tennis       | 18 | Motorsport        | 66  | Cricket      |
| 5  | Baseball     | 21 | Darts             | 189 | UFC          |
| 6  | Volleyball   | 22 | Biathlon          | 283 | Pickleball   |
| 7  | Rugby        | 27 | Beach Soccer      | —   | —            |
| 8  | Handball     | 30 | Snooker           | —   | —            |
| 9  | Boxing       | 33 | Australian Rules  | —   | —            |
| 10 | Table Tennis | 36 | Beach Volleyball  | —   | —            |

The full sport list contains 58 entries — call the endpoint for the authoritative list.

<Note>**Cache TTL:** 600 seconds (10 minutes).</Note>
