Skip to main content
GET
/
v1
/
leagues
Get Leagues — Active competitions with event counts by sport
curl --request GET \
  --url https://api.fieldfunded.com/v1/leagues \
  --header 'X-API-Key: <api-key>'
{
  "leagues": [
    {
      "slug": "premier-league",
      "name": "Premier League",
      "country": "England",
      "sport": {
        "key": "soccer",
        "name": "Soccer"
      },
      "active_events": 22,
      "live_events": 4
    },
    {
      "slug": "nba-regular-season",
      "name": "NBA, Regular Season",
      "country": "USA",
      "sport": {
        "key": "basketball",
        "name": "Basketball"
      },
      "active_events": 25,
      "live_events": 2
    },
    {
      "slug": "la-liga",
      "name": "La Liga",
      "country": "Spain",
      "sport": {
        "key": "soccer",
        "name": "Soccer"
      },
      "active_events": 18,
      "live_events": 5
    },
    {
      "slug": "bundesliga",
      "name": "Bundesliga",
      "country": "Germany",
      "sport": {
        "key": "soccer",
        "name": "Soccer"
      },
      "active_events": 15,
      "live_events": 3
    },
    {
      "slug": "serie-a",
      "name": "Serie A",
      "country": "Italy",
      "sport": {
        "key": "soccer",
        "name": "Soccer"
      },
      "active_events": 13,
      "live_events": 4
    },
    {
      "slug": "nhl-regular-season",
      "name": "NHL, Regular Season",
      "country": "USA",
      "sport": {
        "key": "ice-hockey",
        "name": "Ice Hockey"
      },
      "active_events": 12,
      "live_events": 2
    },
    {
      "slug": "nfl-regular-season",
      "name": "NFL, Regular Season",
      "country": "USA",
      "sport": {
        "key": "american-football",
        "name": "American Football"
      },
      "active_events": 16,
      "live_events": 1
    }
  ],
  "total": 2134
}

Documentation Index

Fetch the complete documentation index at: https://docs.fieldfunded.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Your FieldFunded API Key

Query Parameters

sport
string

Filter leagues by sport key

Example:

"soccer"

Response

A list of available leagues and tournaments, filterable by sport.

leagues
object[]
total
integer