> ## 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, marcatori e vincitori di torneo — catalogo e quote.

Gli **specials** coprono le props (marcatori, combo…) e gli **outrights / futures** (vincitore di torneo, top finish…).

## Catalogo: `/api/specials/outrights`

Restituisce una linea per **mercato × contestant**, con i metadati (senza quote):

```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>
  Per i **futures** di torneo, `event_id`, `period` e i `runner_*` sono `null` — il mercato è identificato da `special_id`. Per le props **collegate a un match**, `event_id` riporta l'`event_id` del match.
</Info>

## Quote: `/api/specials/odds`

Interrogabile per `event_id` **oppure** `special_id` (utile per i futures il cui `event_id` è `null`). Aggiungi `full_history=1` per la timeline.

```bash theme={null}
# quote di un future tramite special_id
curl "https://api.apinn.io/api/specials/odds?special_id=1631640230&full_history=1" \
  -H "X-API-Key: TUA_CHIAVE"
```

Ogni linea: `special_id`, `special_name`, `contestant_id`, `contestant_name`, `handicap`, `odds`, `todds`, `period`, `cutoff`, `timestamp`.

Apertura/chiusura di uno special: `/api/specials/opening` e `/api/specials/closing`.
