Venues
GET
https://devapi.admin.iotait.tech/api/v1/football/venuesStadiums, with capacity and surface.
meta.cache reads HIT.Query parameters
| Name | Type | Example | Description |
|---|---|---|---|
id | integer | 101360 | Identifier of a single record. |
name | string | Premier League | Exact name match. |
city | string | Manchester | City name. |
country | string | England | Country name. |
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/venues?id=101360' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'Response
json
{
"success": true,
"data": [
{
"id": 100046,
"name": "Old Trafford",
"address": "Sir Matt Busby Way",
"city": "Manchester",
"country": "England",
"capacity": 76212,
"surface": "grass",
"image": "https://apinex.iotait.tech/images/venues/100046.png"
}
],
"meta": {
"results": 1,
"page": 1,
"total_pages": 1
}
}