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

# Specials & outrights

> Props, buteurs et vainqueurs de tournoi — catalogue et cotes.

Les **specials** couvrent les props (buteurs, combos…) et les **outrights / futures** (vainqueur de tournoi, top finish…).

## Catalogue : `/api/specials/outrights`

Renvoie une ligne par **marché × contestant**, avec les métadonnées (sans cotes) :

```json theme={null}
{
  "sport_id": 29,
  "league_id": 2627,
  "special_id": 1631640230,
  "bet_type": "MULTI_WAY_HEAD_TO_HEAD",
  "special_name": "UEFA - Champions League Winner",
  "category": "Futures",
  "units": null,
  "event_id": null,
  "period": null,
  "runner_home": null,
  "runner_away": null,
  "contestant_id": 1631655298,
  "contestant_name": "AEK Athens",
  "starts": "2026-08-27T11:00:00",
  "cutoff": "2026-08-27T11:00:00",
  "timestamp": "2026-07-16T13:15:28"
}
```

<Info>
  Pour les **futures** de tournoi, `event_id`, `period` et les `runner_*` sont `null` — le marché est identifié par `special_id`. Pour les props **rattachées à un match**, `event_id` porte l'`event_id` du match.
</Info>

## Cotes : `/api/specials/odds`

Interrogeable par `event_id` **ou** `special_id` (utile pour les futures dont `event_id` est `null`). Ajoutez `full_history=1` pour la timeline.

```bash theme={null}
# cotes d'un future via special_id
curl "https://api.apinn.io/api/specials/odds?special_id=1631640230&full_history=1" \
  -H "X-API-Key: VOTRE_CLE"
```

Chaque ligne : `special_id`, `special_name`, `contestant_id`, `contestant_name`, `handicap`, `odds`, `todds`, `period`, `cutoff`, `timestamp`.

Ouverture/clôture d'un special : `/api/specials/opening` et `/api/specials/closing`.
