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

# Quickstart

> Connect to Ticktock as a B2B operator

<Steps>
  <Step title="Receive API credentials">
    Ticktock issues a tenant API key during onboarding. The key is scoped — your account manager picks a bundle (`cs2.odds.basic`, `cs2.stats`, …) and optional extras based on your contract.
  </Step>

  <Step title="Verify your key with /v1/whoami">
    First call you should make. Confirms the key is alive and prints exactly what it can do.

    ```bash theme={null}
    curl -H "X-API-Key: <your-key>" https://ticktock.bet/v1/whoami
    ```
  </Step>

  <Step title="Pull a list of matches">
    ```bash theme={null}
    curl -H "X-API-Key: <your-key>" "https://ticktock.bet/cs2/v1/matches?status=live"
    ```
  </Step>

  <Step title="Stream live updates">
    ```bash theme={null}
    wscat -c "wss://ticktock.bet/cs2/v1/stream?api_key=<your-key>"
    ```

    Server pushes only the message types your stream scopes allow.
  </Step>

  <Step title="Go live">
    Same URLs and same key end-to-end — talk to your account manager about staging vs production.
  </Step>
</Steps>

<Card title="Full Onboarding" icon="book" href="/getting-started/onboarding">
  Detailed onboarding flow — invite, portal login, API key creation, AMQP provisioning.
</Card>
