Teams

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

Clubs and national sides with their home ground.

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

Query parameters

NameTypeExampleDescription
idinteger100005Identifier of a single record.
namestringPremier LeagueExact name match.
competitioninteger100090Competition identifier, from the competitions endpoint.
seasoninteger2026Season, as a four digit start year.
countrystringEnglandCountry name.
codestringGBCountry or team code.
venueinteger100046Venue identifier.
searchstringmanchesterPartial name search. Minimum three characters.
pageinteger1Page number of the result set.
per_pageinteger50Results per page. Defaults to 50, maximum 200.

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?id=100005' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'

Response

json
{
    "success": true,
    "data": [
        {
            "id": 100005,
            "name": "Manchester United",
            "code": "MUN",
            "country": "England",
            "founded": 1878,
            "is_national": false,
            "logo": "https://apinex.iotait.tech/images/teams/100005.png",
            "venue": {
                "id": 100046,
                "name": "Old Trafford",
                "address": "Sir Matt Busby Way",
                "city": "Manchester",
                "capacity": 76212,
                "surface": "grass"
            }
        }
    ],
    "meta": {
        "results": 1,
        "page": 1,
        "total_pages": 1
    }
}