Skip to main content
GET
/
v1
/
checkouts
/
{checkoutId}
curl https://api.kwugwo.africa/v1/checkouts/chk.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE \
  -H "Authorization: Bearer $KWUGWO_SECRET_KEY"
{
  "uid": "chk.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE",
  "name": "Main checkout",
  "currency": "NGN",
  "status": "active",
  "mediums": [
    { "medium": "bank_transfer", "position": 0, "is_default": true },
    { "medium": "ussd", "position": 1, "is_default": false }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.kwugwo.africa/llms.txt

Use this file to discover all available pages before exploring further.

Returns one checkout by ID. Use this when you have the ID stored on an order and need to render a specific surface for the customer.

Path parameters

checkoutId
string
required
Checkout ID — chk.XXXX.YYYY....

Response

Same shape as one entry from List checkouts.
curl https://api.kwugwo.africa/v1/checkouts/chk.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE \
  -H "Authorization: Bearer $KWUGWO_SECRET_KEY"
{
  "uid": "chk.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE",
  "name": "Main checkout",
  "currency": "NGN",
  "status": "active",
  "mediums": [
    { "medium": "bank_transfer", "position": 0, "is_default": true },
    { "medium": "ussd", "position": 1, "is_default": false }
  ]
}