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

# Introduction

> Real-time sports betting odds API with data from 250+ bookmakers across 10+ sports. Build odds comparison sites, value bet finders, and arbitrage tools.

# Welcome to Odds-API.io

Odds-API.io is a sports betting odds API with real-time data from over 250 bookmakers across 10+ sports.

## Key Features

<CardGroup cols={2}>
  <Card title="250+ Bookmakers" icon="building">
    Access odds from the world's largest selection of bookmakers including Bet365, Unibet, SingBet, and more.
  </Card>

  <Card title="10+ Sports" icon="futbol">
    Football, Basketball, Tennis, Esports, and many more.
  </Card>

  <Card title="Near-Zero Latency" icon="bolt">
    Real-time odds updates with minimal delay.
  </Card>

  <Card title="99.9% Uptime" icon="circle-check">
    Built for production use. We keep things running.
  </Card>
</CardGroup>

## What You Can Build

<CardGroup cols={2}>
  <Card title="Odds Comparison Sites" icon="chart-line">
    Build odds comparison platforms for your users.
  </Card>

  <Card title="Value Bet Finders" icon="magnifying-glass-dollar">
    Identify and alert users to profitable betting opportunities.
  </Card>

  <Card title="Betting Analytics" icon="chart-mixed">
    Build analytics and prediction tools on top of real odds data.
  </Card>

  <Card title="Live Betting Apps" icon="mobile">
    Create real-time betting applications with live odds feeds.
  </Card>
</CardGroup>

## Getting Started

<CardGroup cols={2}>
  <Card title="Quickstart Guide" icon="rocket" href="/quickstart">
    Get up and running with your first API call in minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    Learn how to authenticate your API requests.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore all available endpoints and parameters.
  </Card>

  <Card title="Best Practices" icon="lightbulb" href="/guides/best-practices">
    Learn how to optimize your API usage and performance.
  </Card>
</CardGroup>

## API Coverage

What's included:

* **Pre-match odds** - Full market coverage for upcoming events
* **Live odds** - Real-time in-play betting odds
* **Multiple markets** - ML, Asian Handicap, Over/Under, and more
* **Period scores** - Scores for every period (e.g. half-time, 90min, overtime), enabling complete market settlement
* **Direct bet links** - Deep links directly to bookmaker bet slips
* **Value bets** - Automatically calculated expected value opportunities
* **Historical data** - Access to past odds and results

## Try It Now

See how easy it is to fetch odds data:

<CodeGroup>
  ```bash cURL theme={null}
  curl "https://api.odds-api.io/v3/sports"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.odds-api.io/v3/sports');
  const sports = await response.json();
  console.log(sports);
  ```

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

  response = requests.get('https://api.odds-api.io/v3/sports')
  sports = response.json()
  print(sports)
  ```
</CodeGroup>

<Tip>
  This endpoint doesn't require authentication - try it right now!
</Tip>

## Pricing & Free Tier

Get started with our **free tier** - no credit card required:

* **5,000 requests/hour** on all plans
* Add **10K/20K/30K** additional requests packages
* Custom enterprise solutions available
* Cancel anytime

<Card title="Get Started Free" icon="rocket" href="https://odds-api.io/#pricing">
  Get your API key in 30 seconds
</Card>

## Support

Need help? We're here for you:

* **Email Support**: [hello@odds-api.io](mailto:hello@odds-api.io)
* **Documentation**: Guides and full API reference right here
* **Response Time**: Usually within 24 hours
