1. Catalog
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
        GET
      • One event, as something you can sell
        GET
    • Pricing
      • What a basket costs
    • 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. Catalog

List the events this key sells

Prod Env
Prod Env
GET
/api/v1/sell/events
On-sale first, then the ones whose sales have closed.

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

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠401Unauthorized
🟠403Forbidden
🟠429RateLimited
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/sell/events' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "object": "list",
    "count": 2,
    "data": [
        {
            "id": "66f0a1c2d3e4f5a6b7c8d9e0",
            "slug": "summer-gala",
            "title": "Summer Gala",
            "category": "Concert",
            "startsAt": "2026-07-12T20:00",
            "endsAt": "string",
            "venueName": "Heydar Aliyev Center",
            "address": "Heydar Aliyev pr. 1, Baku",
            "coverImageUrl": "string",
            "posterImageUrl": "string",
            "seating": "general_admission",
            "currency": "AZN",
            "priceFrom": 20,
            "status": "on_sale",
            "ticketsAvailable": 340,
            "checkoutUrl": "https://embed.eticksystem.com/checkout/pk_live_…?event=summer-gala"
        }
    ]
}
Modified at 2026-09-02 12:00:03
Previous
Which sites may frame this key's checkout
Next
One event, as something you can sell
Built with