LogoLogo
  • Welcome
  • GETTING STARTED
    • Getting Started
  • OUR API
    • GET Livescores
    • Seasons
      • GET Seasons
      • GET Season by ID
    • Tracks
      • GET Track by ID
      • GET All Tracks
      • GET Track by Season ID
    • Stages
      • Get All Stages
      • Get Stage By ID
      • Get Stages By Season ID
    • Teams
      • Get Team By ID
      • GET Teams By Season ID
      • Get Season Race Results
    • Drivers
      • Get Driver By ID
      • Get Season Race Results
      • GET Drivers By Season ID
    • Winners
      • GET Track Winners by Season ID
  • General
  • API Reference Guide
  • SportMonks
  • Plans & Pricing
  • Contact
Powered by GitBook
On this page

Was this helpful?

  1. OUR API
  2. Tracks

GET Track by Season ID

PreviousGET All TracksNextStages

Last updated 3 years ago

Was this helpful?

GET Tracks by Season ID

https://f1.sportmonks.com/api/v1.0/tracks/season/{season_ID}

Endpoint details

Authorization

API Key

Pagination

NO

Allowed nested includes

10

Parameters

Available parameters

include

Enrich the API with more data and/or nested includes. Can be used by adding &include= etc. to your request url.

Include options

tracks

Includes are the cornerstone of our API and allow you to enrich and customize your requests. This flexibility is what distinguishes us from our competitors.

Example response

https://f1.sportmonks.com/api/v1.0/tracks/season/6?api_token={API_TOKEN}
    "data": [
        {
            "id": 1,
            "name": "Australian Grand Prix",
            "track": "Albert Park",
            "length": "5.303 km",
            "country_id": 98,
            "direction": "clockwise",
            "type": "street-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/albert-park-circuit.png"
        },
        {
            "id": 3,
            "name": "Bahrain Grand Prix",
            "track": "Bahrain International Circuit",
            "length": "5.412 km",
            "country_id": 190321,
            "direction": "clockwise",
            "type": "race-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/bahrain-international-circuit.png"
        },
        {
            "id": 4,
            "name": "Russian Grand Prix",
            "track": "Sochi International Street Circuit",
            "length": "5.848 km",
            "country_id": 227,
            "direction": "clockwise",
            "type": "street-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/sochi-autodrom-circuit.png"
        },
        {
            "id": 5,
            "name": "Spanish Grand Prix",
            "track": "Circuit de Catalunya",
            "length": "4.675 km",
            "country_id": 32,
            "direction": "clockwise",
            "type": "race-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/catalunya-circuit.png"
        },
        {
            "id": 6,
            "name": "Monaco Grand Prix",
            "track": "Circuit de Monaco",
            "length": "3.337 km",
            "country_id": 75285,
            "direction": "clockwise",
            "type": "street-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/monaco-circuit.png"
        },
        {
            "id": 7,
            "name": "Canadian Grand Prix",
            "track": "Circuit Gilles Villeneuve",
            "length": "4.361 km",
            "country_id": 1004,
            "direction": "clockwise",
            "type": "race-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/gilles-villeneuve-circuit.png"
        },
        {
            "id": 8,
            "name": "Azerbaijan Grand Prix",
            "track": "Baku City Circuit",
            "length": "6.003 km",
            "country_id": 2453,
            "direction": "anti-clockwise",
            "type": "street-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/baku-city-circuit.png"
        },
        {
            "id": 9,
            "name": "Austrian Grand Prix",
            "track": "Red Bull Ring",
            "length": "4.318 km",
            "country_id": 143,
            "direction": "clockwise",
            "type": "race-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/redbull-ring-circuit.png"
        },
        {
            "id": 10,
            "name": "British Grand Prix",
            "track": "Silverstone Circuit",
            "length": "5.891 km",
            "country_id": 462,
            "direction": "clockwise",
            "type": "race-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/silverstone-circuit.png"
        },
        {
            "id": 11,
            "name": "Hungarian Grand Prix",
            "track": "Hungaroring",
            "length": "4.381 km",
            "country_id": 674,
            "direction": "clockwise",
            "type": "race-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/hungaroring-circuit.png"
        },
        {
            "id": 12,
            "name": "Belgian Grand Prix",
            "track": "Spa-Francorchamps",
            "length": "7.004 km",
            "country_id": 556,
            "direction": "clockwise",
            "type": "race-circuit",
            "image_path": "https://cdn.sportmonks.com/images/f1/circuits/spa-francorchamps-circuit.png"
        },

Check this endpoint in Postman.

Run in Postman