{ "info": { "_postman_id": "1c60b6f9-16f5-431d-bcdd-6a8195079754", "name": "Sportmonks Football Fixtures Teams API", "description": "REST API providing soccer/football data including livescores, fixtures, schedules,\nstandings, teams, players, predictions, and odds across 2,500+ leagues worldwide.\n\nAll endpoints accept the API token either as an `Authorization` header or as an\n`api_token` query parameter. Responses are JSON and support `include`, `filters`,\nand `select` query parameters for response shaping.\n\n\nContact Support:\n Name: Sportmonks Support\n Email: support@sportmonks.com", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "createdAt": "2026-07-28T03:00:51.000Z", "updatedAt": "2026-07-28T03:00:51.000Z", "lastUpdatedBy": "35240", "uid": "35240-1c60b6f9-16f5-431d-bcdd-6a8195079754" }, "item": [ { "name": "teams", "item": [ { "name": "{id}", "item": [ { "name": "Get Team By ID", "id": "fe0216a8-5df8-4349-8e05-79bab255d35a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/teams/:id?include=", "host": [ "{{baseUrl}}" ], "path": [ "teams", ":id" ], "query": [ { "description": "Semicolon-separated list of related entities to embed in the response.", "key": "include", "value": "" } ], "variable": [ { "id": "64d48946-e56b-4a61-9094-ba8367f0de83", "key": "id", "value": "", "description": "(Required) " } ] }, "description": "Returns a single team by identifier." }, "response": [ { "id": "fb2d5a0f-fb41-4149-9fd7-bb78caf8982a", "name": "A single team.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/teams/:id?include=", "host": [ "{{baseUrl}}" ], "path": [ "teams", ":id" ], "query": [ { "description": "Semicolon-separated list of related entities to embed in the response.", "key": "include", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"id\": \"\",\n \"sport_id\": \"\",\n \"country_id\": \"\",\n \"venue_id\": \"\",\n \"gender\": \"\",\n \"name\": \"\",\n \"short_code\": \"\",\n \"image_path\": \"\",\n \"founded\": \"\",\n \"type\": \"\",\n \"placeholder\": \"\",\n \"last_played_at\": \"\"\n }\n}", "createdAt": "2026-07-28T03:00:52.000Z", "updatedAt": "2026-07-28T03:00:52.000Z", "uid": "35240-fb2d5a0f-fb41-4149-9fd7-bb78caf8982a" } ], "createdAt": "2026-07-28T03:00:52.000Z", "updatedAt": "2026-07-28T03:00:52.000Z", "uid": "35240-fe0216a8-5df8-4349-8e05-79bab255d35a" } ], "id": "15e0ac0e-3502-44d4-a776-78dc3cba2b32", "createdAt": "2026-07-28T03:00:51.000Z", "updatedAt": "2026-07-28T03:00:51.000Z", "uid": "35240-15e0ac0e-3502-44d4-a776-78dc3cba2b32" }, { "name": "List Teams", "id": "0328bd2d-fd70-4883-a887-701030de4c91", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/teams?include=&page=", "host": [ "{{baseUrl}}" ], "path": [ "teams" ], "query": [ { "description": "Semicolon-separated list of related entities to embed in the response.", "key": "include", "value": "" }, { "description": "Page number for paginated collection responses.", "key": "page", "value": "" } ] }, "description": "Returns paginated teams across covered leagues." }, "response": [ { "id": "1b7a5bbe-ab3b-4e77-9ae3-62c46a7e680a", "name": "A list of teams.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "Authorization", "value": "" } ], "url": { "raw": "{{baseUrl}}/teams?include=&page=", "host": [ "{{baseUrl}}" ], "path": [ "teams" ], "query": [ { "description": "Semicolon-separated list of related entities to embed in the response.", "key": "include", "value": "" }, { "description": "Page number for paginated collection responses.", "key": "page", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"id\": \"\",\n \"sport_id\": \"\",\n \"country_id\": \"\",\n \"venue_id\": \"\",\n \"gender\": \"\",\n \"name\": \"\",\n \"short_code\": \"\",\n \"image_path\": \"\",\n \"founded\": \"\",\n \"type\": \"\",\n \"placeholder\": \"\",\n \"last_played_at\": \"\"\n },\n {\n \"id\": \"\",\n \"sport_id\": \"\",\n \"country_id\": \"\",\n \"venue_id\": \"\",\n \"gender\": \"\",\n \"name\": \"\",\n \"short_code\": \"\",\n \"image_path\": \"\",\n \"founded\": \"\",\n \"type\": \"\",\n \"placeholder\": \"\",\n \"last_played_at\": \"\"\n }\n ],\n \"pagination\": {\n \"count\": \"\",\n \"per_page\": \"\",\n \"current_page\": \"\",\n \"next_page\": \"\",\n \"has_more\": \"\"\n }\n}", "createdAt": "2026-07-28T03:00:52.000Z", "updatedAt": "2026-07-28T03:00:52.000Z", "uid": "35240-1b7a5bbe-ab3b-4e77-9ae3-62c46a7e680a" } ], "createdAt": "2026-07-28T03:00:52.000Z", "updatedAt": "2026-07-28T03:00:52.000Z", "uid": "35240-0328bd2d-fd70-4883-a887-701030de4c91" } ], "id": "1c977246-ef55-4706-b400-b608a76ae7ae", "createdAt": "2026-07-28T03:00:51.000Z", "updatedAt": "2026-07-28T03:00:51.000Z", "uid": "35240-1c977246-ef55-4706-b400-b608a76ae7ae" } ], "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "Authorization", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "variable": [ { "key": "baseUrl", "value": "https://api.sportmonks.com/v3/football" } ] }