{
  "info": {
    "name": "KickoffAPI \u2014 Football Data API",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "description": "Official Postman collection for the KickoffAPI football data API (v1, legacy — sunsets 01 Jan 2027). Set {{apiKey}} to your key from https://kickoffapi.com/portal/. For the current v2 API see https://docs.kickoffapi.com/api-v2-reference.html."
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.kickoffapi.com/api/v1"
    },
    {
      "key": "apiKey",
      "value": "YOUR_API_KEY"
    }
  ],
  "item": [
    {
      "name": "Countries",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/countries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "countries"
          ],
          "query": []
        }
      }
    },
    {
      "name": "Leagues",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/leagues?country=England",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "leagues"
          ],
          "query": [
            {
              "key": "country",
              "value": "England"
            }
          ]
        }
      }
    },
    {
      "name": "Live fixtures",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fixtures?live=all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fixtures"
          ],
          "query": [
            {
              "key": "live",
              "value": "all"
            }
          ]
        }
      }
    },
    {
      "name": "Fixtures by date",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fixtures?date=2026-06-14",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fixtures"
          ],
          "query": [
            {
              "key": "date",
              "value": "2026-06-14"
            }
          ]
        }
      }
    },
    {
      "name": "Standings",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/standings?league=39&season=2025",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "standings"
          ],
          "query": [
            {
              "key": "league",
              "value": "39"
            },
            {
              "key": "season",
              "value": "2025"
            }
          ]
        }
      }
    },
    {
      "name": "Team statistics",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/teams/statistics?league=39&season=2025&team=33",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "teams",
            "statistics"
          ],
          "query": [
            {
              "key": "league",
              "value": "39"
            },
            {
              "key": "season",
              "value": "2025"
            },
            {
              "key": "team",
              "value": "33"
            }
          ]
        }
      }
    },
    {
      "name": "Players",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/players?team=33&season=2025",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "players"
          ],
          "query": [
            {
              "key": "team",
              "value": "33"
            },
            {
              "key": "season",
              "value": "2025"
            }
          ]
        }
      }
    },
    {
      "name": "Head to head",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fixtures/headtohead?h2h=33-34",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fixtures",
            "headtohead"
          ],
          "query": [
            {
              "key": "h2h",
              "value": "33-34"
            }
          ]
        }
      }
    },
    {
      "name": "Odds",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/odds?league=39&season=2025",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "odds"
          ],
          "query": [
            {
              "key": "league",
              "value": "39"
            },
            {
              "key": "season",
              "value": "2025"
            }
          ]
        }
      }
    },
    {
      "name": "Predictions",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "x-api-key",
            "value": "{{apiKey}}"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/predictions?fixture=1035039",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "predictions"
          ],
          "query": [
            {
              "key": "fixture",
              "value": "1035039"
            }
          ]
        }
      }
    }
  ]
}