RTK Tickets — Pricing API (1.0.0)

Download OpenAPI specification:

Public pricing read for RTK Tickets.

GET /pricing takes marketplace-native identifiers (the marketplace's own event id as a string, a section label, an optional row label, and a pack size) and returns the current buy price at row or section level (a row miss falls back to the section price), together with the event's active flag and purchasability signals.

Get the buy price for a marketplace-native listing

query Parameters
marketplace
required
string
Example: marketplace=ticketmaster

Marketplace whose listing is being priced.

eventId
required
string
Example: eventId=4829015

The marketplace's own event id (a string).

section
required
string
Example: section=244

Section label exactly as the marketplace labels it.

row
string
Example: row=F

Row label. Absent => section-level price; present => row-level price (falls back to the section price on a row miss).

packSize
required
integer >= 1
Example: packSize=2

Number of contiguous seats being priced.

Responses

Response samples

Content type
application/json
{
  • "buyPrice": {
    },
  • "priceSource": "row_level",
  • "calculatedAt": "2019-08-24T14:15:22Z",
  • "eventActive": true,
  • "eventStatus": "active",
  • "sectionStatus": "string",
  • "sectionBuyPrice": {
    },
  • "rowBuyPrice": {
    },
  • "rank": 0
}