> For the complete documentation index, see [llms.txt](https://developer.ivvy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.ivvy.com/venues/venuedata/get-venue-room-list.md).

# Get Venue Room List

<mark style="color:green;">`POST`</mark> `[PlatformAddress]/api/1.0/venue?action=getVenueRoomList`

#### Request Body

| Name    | Type    | Description         |
| ------- | ------- | ------------------- |
| venueId | integer | The id of the venue |

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

```
{
  "meta": {
    "totalResults": 1,
    "start": 0,
    "perPage": null,
    "count": 1
  },
  "results": [
    {
      "id": 1,
      "code": "2-1",
      "name": "Family RoomFamily",
      "description": "<p>The best family rooms:</p>  <ul><li>One double bed</li>  <li>Two child beds</li>  <li>Sitting area</li>  <li>Balcony</li> </ul>",
      "numStandardAdults": 2,
      "numExtraAdults": 1,
      "extraAdultCost": 100,
      "canSmoke": false,
      "capacity": 10,
      "marketplaceName": null
    }
  ]
}
```

{% endtab %}
{% endtabs %}

The result from this call will be a [collection](/getting-started/interpreting-the-response/collections.md) of all the events the user has access to. This call also accepts the [pagination](/getting-started/interpreting-the-response/pagination.md) and [filter](/getting-started/interpreting-the-response/filtering.md) properties. The venueId is required, for example {"venuId":10}

### Example Request

`Get a specific Venue’s Room List`

```javascript
{
  "venueId": 1
}
```
