Skip to main content
Fetch the current status and payment link for a checkout. This endpoint is public and does not require authentication.

Path parameters

  • id (string, required): The checkout ID returned when you created the checkout.

Example request

curl https://api.zenobank.io/api/v1/checkouts/ch_l0k1o87yt6

Example response

{
  "id": "ch_l0k1o87yt6",
  "orderId": "order-12345",
  "priceCurrency": "USD",
  "priceAmount": "0.01",
  "status": "OPEN",
  "expiresAt": "2025-10-04T10:30:00Z",
  "checkoutUrl": "https://pay.zenobank.io/ch_l0k1o87yt6",
  "createdAt": "2025-10-04T10:00:00Z",
  "successRedirectUrl": "https://example.com/success"
}