Team Seasons

GEThttps://devapi.admin.iotait.tech/api/v1/football/teams/seasons

Season years a team has played, as a list of integers.

Freshness — cached for 1 day. Repeating the same query inside that window is answered from cache in single digit milliseconds, and meta.cache reads HIT.

Query parameters

NameTypeExampleDescription
teamrequiredinteger100005Team identifier.

Example request

Paste this straight into Postman with Import → Raw text.

curl
curl --location --request GET 'https://devapi.admin.iotait.tech/api/v1/football/teams/seasons?team=100005' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'

Response

json
{
    "success": true,
    "data": [
        2010
    ],
    "meta": {
        "results": 17,
        "page": 1,
        "total_pages": 1
    }
}