LogoLogo
Cricket APISportMonksContactFootball API
  • Welcome
  • Getting Started
    • Getting started
    • All endpoints
    • Enriching your response
  • Our API
    • Introduction to our API
    • Continents
      • GET All Continents
      • GET Continent by ID
    • Countries
      • GET All Countries
      • GET Country by ID
    • Leagues
      • GET All Leagues
      • GET League by ID
    • Seasons
      • GET All Seasons
      • GET Season by ID
    • Fixtures
      • GET All Fixtures
      • GET Fixture by ID
    • Livescores
      • GET All Livescores
    • Teams
      • GET All Teams
      • GET Team by ID
      • GET Squad by Team and Season ID
    • Players
      • GET All Players
      • GET Player by ID
    • Officials
      • GET All Officials
      • GET Official by ID
    • Venues
      • GET All Venues
      • GET Venue by ID
    • Positions
      • GET All Positions
      • GET Position by ID
    • Stages
      • GET All Stages
      • GET Stage by ID
    • Team Rankings
      • GET Global Team Rankings
    • Standings
      • GET Standings by Season ID
      • GET Standings by Stage ID
    • Scores
      • GET All Scores
      • GET Score by ID
  • Relationships
    • Scoreboards
    • Official/Umpries
    • Results
  • API References
  • API Reference Guide
  • API Rate limit
  • Statuses and definitions
  • Demo response files
  • Events
  • Statistics
  • General
  • SportMonks
  • Plans & Pricing
  • FAQ
  • Contact
  • Changelog
    • Changelog
Powered by GitBook
On this page

Was this helpful?

  1. Our API
  2. Venues

GET All Venues

GET All Venues

https://cricket.sportmonks.com/api/v2.0/venues

Endpoint details

Authorization

API Key

Pagination

NO

Parameters

Available parameters

filter

Array of fields to filter on. Can be used by adding &filter[{field you want to filter}]. For example: &filter[country_id]=98.

fields[object]

Only return fields you are interested in. Simply add &fields[object]=id,name,code to your request url.

sort

One or comma separated list of fields to sort on. Can be used by adding &sort= to your request url.

Filters

city

Sort

You can sort on all fields.

Example response

https://cricket.sportmonks.com/api/v2.0/venues?api_token={API_TOKEN}
   "data": [
        {
            "resource": "venues",
            "id": 1,
            "country_id": 98,
            "name": "Adelaide Oval",
            "city": "Adelaide",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/1/1.png",
            "capacity": 53583,
            "floodlight": true,
            "updated_at": "2018-11-14T07:43:05.000000Z"
        },
        {
            "resource": "venues",
            "id": 2,
            "country_id": 98,
            "name": "W.A.C.A. Ground",
            "city": "East Perth,  Perth, Western Australia",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/2/2.png",
            "capacity": 18000,
            "floodlight": true,
            "updated_at": "2018-11-14T17:47:15.000000Z"
        },
        {
            "resource": "venues",
            "id": 3,
            "country_id": 98,
            "name": "Tony Ireland Stadium, Townsville",
            "city": "Thuringowa,  Townsville, Queensland",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/3/3.png",
            "capacity": 10000,
            "floodlight": false,
            "updated_at": "2018-11-14T17:43:45.000000Z"
        },
        {
            "resource": "venues",
            "id": 4,
            "country_id": 98,
            "name": "TIO Stadium",
            "city": "Marrara,  Darwin, Northern Territory",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/4/4.png",
            "capacity": 15000,
            "floodlight": true,
            "updated_at": "2018-11-14T17:43:27.000000Z"
        },
        {
            "resource": "venues",
            "id": 5,
            "country_id": 98,
            "name": "Tasmania Cricket Association Ground",
            "city": "Queens Domain,  Hobart, Tasmania",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/5/5.png",
            "capacity": null,
            "floodlight": false,
            "updated_at": "2018-11-14T17:39:41.000000Z"
        },
        {
            "resource": "venues",
            "id": 6,
            "country_id": 98,
            "name": "Sydney Cricket Ground",
            "city": "Moore Park,  Sydney, New South Wales",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/6/6.png",
            "capacity": 44002,
            "floodlight": true,
            "updated_at": "2018-11-14T17:37:49.000000Z"
        },
        {
            "resource": "venues",
            "id": 7,
            "country_id": 98,
            "name": "Stadium Australia",
            "city": "Homebush Bay,  Sydney, New South Wales",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/7/7.png",
            "capacity": 78000,
            "floodlight": true,
            "updated_at": "2018-11-14T17:37:03.000000Z"
        },
        {
            "resource": "venues",
            "id": 8,
            "country_id": 98,
            "name": "Simonds Stadium",
            "city": "Geelong, Victoria",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/8/8.png",
            "capacity": null,
            "floodlight": false,
            "updated_at": "2018-11-14T17:27:23.000000Z"
        },
        {
            "resource": "venues",
            "id": 9,
            "country_id": 98,
            "name": "Perth Stadium",
            "city": "Perth, Western Australia",
            "image_path": "https://cdn.sportmonks.com/images/cricket/venues/9/9.png",
            "capacity": 60000,
            "floodlight": true,
            "updated_at": "2018-11-14T17:21:33.000000Z"
        },
PreviousVenuesNextGET Venue by ID

Last updated 5 months ago

Was this helpful?