# 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               | <p>Array of fields to filter on. Can be used by adding <code>\&filter\[{field you want to filter}].</code> <br>For example: <code>\&filter\[country\_id]=98.</code></p> |
| 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

{% tabs %}
{% tab title="Request" %}

```
https://cricket.sportmonks.com/api/v2.0/venues?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

```javascript
   "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"
        },
```

{% endtab %}
{% endtabs %}
