List tickets

GET/events/:eventId/tickets

List the ticket types on sale for an event.

AuthNot required

Path parameters

eventIdstringrequired

Event ID or slug.

Response

FieldTypeDescription
ticketsTicket[]Array of ticket types.
Request
curl https://api.4s.link/events/EVENT_ID/tickets \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"tickets": [
{
"id": "t1a2b3c4-...",
"name": "一般チケット",
"description": "...",
"price": 5000,
"paymentType": "PREPAID_STRIPE",
"salesLimit": 200,
"status": "PUBLISHED",
"requiresApproval": false,
"transferable": true
}
]
}