SoccersAPIDocs
DocsReferenceVenues › All venues

GETAll venues

All venues, or the venues of a country. Paginated, 100 items per page.

/v2.2/venues/ with t=list

Try it in the interactive referenceAll Venues operations

Request

GET /v2.2/venues/?user=USER&token=TOKEN&t=list&country_id=15

Parameters

NameRequiredDescriptionExample
country_idnoCountry ID.15
pagenoPage number on paginated operations, starting at 1. The response reports meta.page and meta.pages; a page beyond the last returns an empty data.1

Example response

{
  "data": [
    {
      "id": 191,
      "name": "Cashpoint Arena",
      "capacity": 8500,
      "city": "Altach",
      "address": null,
      "img": "https://cdn.soccersapi.com/images/soccer/venues/191.png",
      "coordinates": {
        "lat": "47.353889",
        "long": "9.636667"
      },
      "country": {
        "id": 15,
        "name": "Austria",
        "continent": "Europe",
        "sub_region": null,
        "long": null,
        "lat": null,
        "img": "https://cdn.soccersapi.com/images/countries/30/at.png",
        "code": "at",
        "cc": "at"
      }
    },
    {
      "id": 192,
      "name": "Lavanttal-Arena",
      "capacity": 7300,
      "city": "Wolfsberg",
      "address": null,
      "img": "https://cdn.soccersapi.com/images/soccer/venues/192.png",
      "coordinates": {
        "lat": "46.826258",
        "long": "14.851989"
      },
      "country": {
        "id": 15,
        "name": "Austria",
        "continent": "Europe",
        "sub_region": null,
        "long": null,
        "lat": null,
        "img": "https://cdn.soccersapi.com/images/countries/30/at.png",
        "code": "at",
        "cc": "at"
      }
    }
  ],
  "meta": {
    "requests_left": 2950,
    "user": "your_username",
    "plan": "Soccer API 50",
    "page": 1,
    "pages": 2,
    "count": 100,
    "total": 173,
    "msg": ""
  }
}