Get Venue
GET
/venues/{id}Fetch details about a specific venue.
Returns everything about the venue: name, address, capacity, and optionally
its seating layouts.
Use the `expand` parameter to include related data like layouts and areas.
When to use this
- Displaying venue information on an event page
- Loading venue data for an editor
- Getting the venue's seating layouts
Parameters
idpathrequiredVenue ID
Response
Venue retrieved successfully
Notes
💡Pass `expand=layouts` to include seating layouts in the response.
Code Samples
Get Venue using the TypeScript SDK:
import { BackstageClient } from '@ticketlayer/backstage';
const client = new BackstageClient({
organisationSlug: 'your-org',
});
client.setAccessToken('YOUR_ACCESS_TOKEN');
// Get venue details
const venue = await client.venue.get('{{VENUE_ID}}');
console.log(`Venue: ${venue.name || venue.id}`);