1. Checkout
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
    • Checkout
      • Start a purchase
        POST
      • Where a checkout got to
        GET
    • 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. Checkout

Where a checkout got to

Prod Env
Prod Env
GET
/api/v1/sell/checkout/{id}
Poll every 2–3 seconds while the buyer is at the gateway; a payment
typically settles within seconds of capture. The order.paid webhook is
the same news without the polling.

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
Path Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠401Unauthorized
🟠403Forbidden
🟠404NotFound
🟠429RateLimited
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/sell/checkout/cs_9KxR2tPmH4vLbYcQ8sZaW3nD' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "id": "cs_9KxR2tPmH4vLbYcQ8sZaW3nD",
    "status": "requires_payment",
    "paymentMethod": "card",
    "paymentUrl": "string",
    "eventId": "string",
    "currency": "AZN",
    "amount": 80,
    "quantity": 2,
    "orderId": "string",
    "customerEmail": "string",
    "ticketUrl": "string",
    "returnUrl": "string",
    "livemode": true
}
Modified at 2026-09-02 12:00:03
Previous
Start a purchase
Next
The sales for this key's events
Built with