Retrieve product prices and stocks.
POST/api/v1/eventim/catalog/products/pricesAndStocks
Fetches price and stock availability information for products in the catalog. Filter by product IDs to get specific products, or retrieve all products. Returns detailed pricing breakdown and stock limits for each product. Product Type : GLOBAL (global stock) or EVENTSESSION (stock available for a specific eventsession)
Examples
Success (200)
\{
"productsPricesAndStocks": [
\{
"productId": 78877,
"amount": 38.00,
"fees": 3.00,
"feesDetails": [
\{ "colId": 2, "amount": 2.00 \},
\{ "colId": 3, "amount": 1.00 \}
],
"stockLimit": 500,
"productType": "GLOBAL"
\},
\{
"productId": 78878,
"amount": 55.00,
"fees": 3.00,
"feesDetails": [
\{ "colId": 2, "amount": 2.00 \},
\{ "colId": 3, "amount": 1.00 \}
],
"productType": "GLOBAL"
\}
]
\}
Error 400 - Missing x-tenant header
\{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
"title": "Bad Request",
"status": 400,
"detail": "Tenant header 'x-tenant' is required"
\}
Error 422 - Validation failed
\{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.21",
"title": "Validation Failed",
"status": 422,
"detail": "The request contains 1 validation error(s)",
"errors": [
\{ "field": "productIds[0]", "message": "ProductIds must contain only positive values" \}
],
"errorCount": 1
\}
Error 403 - Forbidden
\{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.4",
"title": "Forbidden",
"status": 403,
"detail": "Access denied to the requested event"
\}
Error 500 - Server error
\{
"type": "https://tools.ietf.org/html/rfc9110#section-15.6.1",
"title": "An error occurred while processing your request.",
"status": 500,
"traceId": "00-1234567890abcdef1234567890abcdef-1234567890abcdef-00"
\}
Request
Responses
- 200
- 400
- 403
- 422
- 500
OK
Bad Request
Forbidden
Unprocessable Content
Internal Server Error