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

# Schnellstart

> Ihre erste Anfrage in einer Minute.

## 1. Holen Sie Ihren API-Schlüssel

Erstellen Sie ein Konto auf [apinn.io](https://www.apinn.io/signup) — die kostenlose Testphase umfasst **5 000 Anfragen / Stunde**. Ihr Schlüssel (`pnk_…`) wird in Ihrem [Kundenbereich](https://www.apinn.io/account) angezeigt.

## 2. Senden Sie Ihre erste Anfrage

Übergeben Sie den Schlüssel im Header `X-API-Key` bei jedem Aufruf.

<CodeGroup>
  ```bash curl theme={null}
  # Vollständige Quotenhistorie eines Events
  curl https://api.apinn.io/api/odds \
    -H "X-API-Key: DEIN_KEY" \
    -G --data-urlencode "event_id=1608247913" \
       --data-urlencode "full_history=1"
  ```

  ```python Python theme={null}
  import requests

  BASE = "https://api.apinn.io"
  H = {"X-API-Key": "DEIN_KEY"}

  r = requests.get(f"{BASE}/api/odds",
      params={"event_id": 1608247913, "full_history": 1}, headers=H)
  odds = r.json()
  print(f"{len(odds)} Quotenbewegungen")
  ```

  ```javascript Node.js theme={null}
  const BASE = "https://api.apinn.io";
  const H = { "X-API-Key": "DEIN_KEY" };

  const r = await fetch(`${BASE}/api/odds?event_id=1608247913&full_history=1`, { headers: H });
  const odds = await r.json();
  console.log(`${odds.length} Quotenbewegungen`);
  ```
</CodeGroup>

## 3. Erkunden Sie das Book

```bash theme={null}
# Sportarten auflisten
curl https://api.apinn.io/api/sports -H "X-API-Key: DEIN_KEY"

# Die Live-Spiele einer Sportart (29 = Soccer)
curl "https://api.apinn.io/api/fixtures?sport_id=29&live=1" -H "X-API-Key: DEIN_KEY"

# Die Hauptquoten eines Spiels
curl "https://api.apinn.io/api/odds?event_id=1608247913&main_lines_only=1" -H "X-API-Key: DEIN_KEY"
```

<Tip>
  Jede Antwort liefert Quota-Header: `X-Quota-Limit`, `X-Quota-Remaining`, `X-Quota-Cost`. Siehe [Quotas & Limits](/de/rate-limits).
</Tip>

## Nächste Schritte

<CardGroup cols={2}>
  <Card title="API-Referenz" icon="code" href="/de/api-reference/introduction">
    Alle Endpoints und Parameter.
  </Card>

  <Card title="Echtzeit-Stream" icon="bolt" href="/de/concepts/streaming">
    Erhalten Sie Deltas per Push über SSE.
  </Card>
</CardGroup>
