1. See your events

GET/api/v1/public/events
Explanation

In plain words: “which events can I sell?” Send your partner code. In the reply, note the event number (id) you want for the next step.

Payload / request

Send your partner code (x-partner-code). No form body.

(no body)
Response

List of events

{
  "success": true,
  "message": "Public events",
  "data": {
    "events": [
      {
        "id": "8",
        "title": "Horoya AC — Hafia FC",
        "category": "Sport",
        "starts_at": "2026-12-14T16:00:00",
        "ends_at": "2026-12-14T18:00:00",
        "description": "Integration test event for YOUR_PARTNER_CODE partner API",
        "venue": { "name": "Stade du 28 Septembre", "city": "Conakry", "country": "Guinée" },
        "min_price": 35000,
        "currency": "GNF",
        "home_team": "Horoya AC",
        "away_team": "Hafia FC"
      }
    ],
    "pagination": { "page": 1, "limit": 12, "total": 1, "total_pages": 1 }
  }
}
Code example
const res = await fetch("https://book.stadepassgn.com/api/v1/public/events?page=1&limit=12", {
  method: "GET",
  headers: {
    "x-partner-code": process.env.PARTNER_CODE || "YOUR_PARTNER_CODE",
  },
});
const json = await res.json();

Try this API (demo)

Local playground — sample GNF response. No real network call.

Demo only. In production, sign every request (see Auth on the home page).