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

> Props, goleadores y ganadores de torneo — catálogo y cuotas.

Los **specials** cubren los props (goleadores, combos…) y los **outrights / futures** (ganador de torneo, top finish…).

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

Devuelve una línea por **mercado × contestant**, con los metadatos (sin cuotas):

```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 los **futures** de torneo, `event_id`, `period` y los `runner_*` son `null` — el mercado se identifica por `special_id`. Para los props **vinculados a un partido**, `event_id` lleva el `event_id` del partido.
</Info>

## Cuotas: `/api/specials/odds`

Consultable por `event_id` **o** `special_id` (útil para los futures cuyo `event_id` es `null`). Añade `full_history=1` para la timeline.

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

Cada línea: `special_id`, `special_name`, `contestant_id`, `contestant_name`, `handicap`, `odds`, `todds`, `period`, `cutoff`, `timestamp`.

Apertura/cierre de un special: `/api/specials/opening` y `/api/specials/closing`.
