Team Countries
GET
https://devapi.admin.iotait.tech/api/v1/football/teams/countriesCountries that have teams available.
meta.cache reads HIT.Query parameters
| Name | Type | Example | Description |
|---|---|---|---|
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/countries?page=1' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'Response
json
{
"success": true,
"data": [
{
"name": "Afghanistan",
"code": null,
"flag": null
}
],
"meta": {
"results": 234,
"page": 1,
"total_pages": 1
}
}