> ## 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 e outrights

> Props, marcadores e vencedores de torneio — catálogo e odds.

Os **specials** cobrem as props (marcadores, combos…) e os **outrights / futures** (vencedor de torneio, top finish…).

## Catálogo: `/api/specials/outrights`

Devolve uma linha por **mercado × contestant**, com os metadados (sem odds):

```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>
  Para os **futures** de torneio, `event_id`, `period` e os `runner_*` são `null` — o mercado é identificado por `special_id`. Para as props **ligadas a um jogo**, `event_id` contém o `event_id` do jogo.
</Info>

## Odds: `/api/specials/odds`

Consultável por `event_id` **ou** `special_id` (útil para os futures cujo `event_id` é `null`). Adicione `full_history=1` para a timeline.

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

Cada linha: `special_id`, `special_name`, `contestant_id`, `contestant_name`, `handicap`, `odds`, `todds`, `period`, `cutoff`, `timestamp`.

Abertura/fecho de um special: `/api/specials/opening` e `/api/specials/closing`.
