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 ID

PreviousTracksNextGET All Tracks

Last updated 3 years ago

Was this helpful?

GET Tracks by ID

https://f1.sportmonks.com/api/v1.0/tracks/{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

seasons stages currentStage

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/1?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"
    },

Check this endpoint in Postman.

Run in Postman