Getting Started

Learn how to authenticate and make your first API request

Introduction

Over15AI provides a comprehensive REST API for football intelligence, delivering real-time betting odds, match predictions, live scores, fixtures, news, and statistics for 200+ leagues worldwide.

Base URL

https://api.over15ai.com/v1

All API requests must be made over HTTPS. Requests made over plain HTTP will fail.

Authentication

All requests require an API key

curl https://api.over15ai.com/v1/odds/760486 \
  -H "Authorization: Bearer YOUR_API_KEY"

Getting Your API Key

  1. Visit /developers/api-keys
  2. Sign in with Google
  3. Generate your API key
  4. Copy and securely store your key

⚠️ Security Warning

Never share your API key publicly or commit it to version control.

API Key Tiers

Choose the plan that fits your needs

TierPriceRequestsRate Limit
Free
$0100/day10/min
Starter
$19/mo10,000/mo100/min
Pro
$39/mo100,000/mo1,000/min
Business
$79/mo500,000/mo5,000/min

Making Your First Request

Get match odds in seconds

Request

curl https://api.over15ai.com/v1/odds/760486 \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "data": {
    "match": {
      "id": "760486",
      "homeTeam": "Netherlands",
      "awayTeam": "Romania",
      "league": "FIFA World Cup",
      "startTime": "2026-07-02T19:00:00Z"
    },
    "markets": {
      "matchResult": {
        "home": { "odds": 1.50 },
        "draw": { "odds": 4.20 },
        "away": { "odds": 6.50 }
      },
      "overUnder": {
        "over25": { "odds": 1.73 },
        "under25": { "odds": 2.10 }
      }
    }
  }
}

HTTP Status Codes

CodeMeaningDescription
200OKRequest successful
400Bad RequestInvalid parameters
401UnauthorizedInvalid API key
404Not FoundResource not found
429Too Many RequestsRate limit exceeded