calculate_item_pricing
Calculate Eventbrite ticket fees and taxes for a given base price, country, and scope to preview hypothetical pricing before publishing an event.
Instructions
Calculate hypothetical fees for ticket pricing.
ENDPOINT: POST /pricing/calculate_price_for_item/
Calculates Eventbrite fees for given price based on scope (organization, event, ticket_class, assortment_plan).
PARAMETERS:
base_price (string, required): Format "CURRENCY,amount_in_cents"
country (string, required): ISO 3166 2-letter code
scope (object, required): type (organization/event/ticket_class/assortment_plan) and identifier
absorb_fees (boolean): Include fees in base price
absorb_taxes (boolean): Include taxes in base price
payment_type: eventbrite, authnet, paypal
channel: web, atd
ERRORS (400):
PRICING_MODEL_NOT_SUPPORTED, INVALID_CURRENCY_COUNTRY_COMBINATION, BASE_PRICE_TOO_LOW_TO_ABSORB, ARGUMENTS_ERROR
AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scope | Yes | Scope object with type and identifier (required) | |
| channel | No | Sales channel | |
| country | Yes | Country code (required) | |
| base_price | Yes | Base price (required, e.g., "USD,1000") | |
| absorb_fees | No | Absorb fees | |
| absorb_taxes | No | Absorb taxes | |
| payment_type | No | Payment type |