1. Pricing
Eticksystem
  • eticksystem Sell API
    • Config
      • Bootstrap the checkout
      • The checkout palettes
      • Which sites may frame this key's checkout
    • Catalog
      • List the events this key sells
      • One event, as something you can sell
    • Pricing
      • What a basket costs
        POST
    • Checkout
      • Start a purchase
      • Where a checkout got to
    • Orders
      • The sales for this key's events
      • One order
    • Schemas
      • Error
      • Config
      • ThemePreset
      • PaymentProvider
      • PaymentMethod
      • EventStatus
      • Seating
      • EventSummary
      • Tier
      • Question
      • EventDetail
      • BasketItem
      • QuoteRequest
      • QuoteLine
      • QuoteResponse
      • Customer
      • CheckoutRequest
      • CheckoutResponse
      • OrderTicket
      • Order
      • WebhookEvent
  1. Pricing

What a basket costs

Prod Env
Prod Env
POST
/api/v1/sell/quote
A pure read — nothing is held and nothing is created. The same numbers are
recomputed at checkout, so a stale quote is a wrong display, never a wrong
charge.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
API Key
Add parameter in header
X-Etick-Key
Example:
X-Etick-Key: ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠400BadRequest
🟠401Unauthorized
🟠403Forbidden
🟠404NotFound
🟠409Conflict
🟠429RateLimited
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location '/api/v1/sell/quote' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "event": "summer-gala",
    "items": [
        {
            "tier": "vip",
            "quantity": 2
        }
    ],
    "promoCode": "EARLYBIRD"
}'
Response Response Example
200 - Example 1
{
    "currency": "AZN",
    "lines": [
        {
            "tier": "vip",
            "name": "VIP",
            "color": "string",
            "quantity": 2,
            "unitPrice": 50,
            "amount": 100,
            "seats": [
                "string"
            ]
        }
    ],
    "subtotal": 100,
    "discount": 20,
    "total": 80,
    "quantity": 2,
    "free": false,
    "promo": {
        "code": "EARLYBIRD",
        "type": "PERCENTAGE",
        "value": 20,
        "applied": true,
        "reason": "not_found"
    }
}
Modified at 2026-09-02 12:00:03
Previous
One event, as something you can sell
Next
Start a purchase
Built with