TickeX
Developer & Platform Docs

Documentation

Technical guides, API reference, and integration patterns for building on the TickeX ticketing platform.

Event Creation API

Organizers can issue live events using standard JSON payloads over HTTP POST requests to /api/events.

POST /api/events
Authorization: Bearer <TOKEN>
{
  "title": "Accra Tech Fest",
  "price": 150,
  "category": "Tech"
}

Gate Verification API

Scan entry passes at gate entrances using mobile cameras. Send scanned QR payload strings to /api/tickets/validate.

POST /api/tickets/validate
{
  "qrCode": "TICKEX_1722709200_98124"
}

// Responds with 200 OK & VALID status

Authentication & Security

All administrative and organizer endpoints are protected with standard JSON Web Token (JWT) authorization headers. Include Authorization: Bearer <accessToken> in all protected API calls.