How-to build your API requests
We'll cover how to build correct API requests with our Football API 2.0
Step 1: Get the base URL
https://soccer.sportmonks.com/api/v2.0/?api_token={API_TOKEN}Step 2: Choose and add the endpoint
https://soccer.sportmonks.com/api/v2.0/fixtures/date/{Date}?api_token={API_TOKEN}https://soccer.sportmonks.com/api/v2.0/fixtures/date/2020-09-26?api_token={API_TOKEN}Step 3: Evaluate the response
{
"data": [
{
"id": 16475331,
"league_id": 501,
"season_id": 17141,
"stage_id": 77447501,
"round_id": 194976,
"group_id": null,
"aggregate_id": null,
"venue_id": 14509,
"referee_id": 15815,
"localteam_id": 338,
"visitorteam_id": 282,
"winner_team_id": null,
Step 4: Enrichment
Step 5: Re-evaluate response
Step 6: Go even further beyond
Last updated
Was this helpful?