Get Price Scheme
GET
/events/{eventId}/price-schemes/{priceSchemeId}Fetch the details of a specific price scheme.
Returns all the ticket types, their prices, and any restrictions (like member-
only pricing or early-bird discounts).
Use this to show pricing on a ticket selection page or to load a scheme for
editing.
When to use this
- Displaying ticket prices during checkout
- Loading a price scheme into an editor
- Checking which ticket types are available
Parameters
eventIdpathrequiredEvent ID
priceSchemeIdpathrequiredPrice scheme ID
Response
Price scheme retrieved successfully
Notes
💡The response includes all ticket types with their prices and availability rules.
Code Samples
Get Event Price Scheme using the TypeScript SDK:
import { BackstageClient } from '@ticketlayer/backstage';
const client = new BackstageClient({
organisationSlug: 'your-org',
});
client.setAccessToken('YOUR_ACCESS_TOKEN');
// Get eventpricescheme details
const eventpricescheme = await client.eventpricescheme.get('{{EVENTID}}');
console.log(`EventPriceScheme: ${eventpricescheme.name || eventpricescheme.id}`);