Teams
GET
https://devapi.admin.iotait.tech/api/v1/football/teamsClubs and national sides with their home ground.
meta.cache reads HIT.Query parameters
| Name | Type | Example | Description |
|---|---|---|---|
id | integer | 100005 | Identifier of a single record. |
name | string | Premier League | Exact name match. |
competition | integer | 100090 | Competition identifier, from the competitions endpoint. |
season | integer | 2026 | Season, as a four digit start year. |
country | string | England | Country name. |
code | string | GB | Country or team code. |
venue | integer | 100046 | Venue identifier. |
search | string | manchester | Partial name search. Minimum three characters. |
page | integer | 1 | Page number of the result set. |
per_page | integer | 50 | Results 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
}
}