5. See the amount to charge

GET/api/v1/public/booking-sessions/6e5e5b33-ab5c-40da-b9f0-19bec7da55dd/checkout
Explanation

In plain words: “how much should I charge?” After your reservations, StadePass calculates the total. You collect that money yourself (StadePass does not take the payment).

Payload / request

No body. At least one reserved seat.

(no body)
Response

Total amount (GNF)

{
  "success": true,
  "message": "Booking checkout ready",
  "data": {
    "session_id": "6e5e5b33-ab5c-40da-b9f0-19bec7da55dd",
    "event_id": "8",
    "owner_ref": "YOUR_PARTNER_CODE-user-42",
    "currency": "GNF",
    "amount": 40000,
    "items": [
      {
        "hold_id": "133c21f0-d704-46f4-8901-553056af6408",
        "seat_id": "73660",
        "seat_code": "TS-01-R1-1",
        "price": 40000,
        "remaining_seconds": 420
      }
    ],
    "hold_expires_at": "2026-09-04T13:09:00.000Z",
    "checkout_token": "eyJhbGciOiJIUzI1NiJ9.demo-checkout-token",
    "payment_domain": "https://book.stadepassgn.com",
    "next_step": "collect_payment_then_confirm"
  }
}
Code example
const res = await fetch("https://book.stadepassgn.com/api/v1/public/booking-sessions/6e5e5b33-ab5c-40da-b9f0-19bec7da55dd/checkout", {
  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).