Skip to main content
GET
/
v1
/
checkouts
/
{checkoutId}
/
{mediumId}
curl https://api.kwugwo.africa/v1/checkouts/chk.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE/ussd \
  -H "Authorization: Bearer $KWUGWO_SECRET_KEY"
[
  {
    "psp": "paystack",
    "banks": [
      { "code": "058", "name": "GTBank" },
      { "code": "044", "name": "Access Bank" }
    ]
  }
]

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 the PSP providers that will be used when a customer pays this checkout via the given medium. Useful for diagnostics and for rendering provider-specific inputs (e.g. “which bank do you want to dial?” for ussd).

Path parameters

checkoutId
string
required
Checkout ID — chk.XXXX.YYYY....
mediumId
string
required
Medium identifier — bank_transfer, mobile_money, or ussd.

Response

An array of provider entries. The shape varies by medium — every entry carries at least a psp identifier; mediums like ussd and mobile_money also list the banks or wallet providers each PSP supports.
curl https://api.kwugwo.africa/v1/checkouts/chk.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE/ussd \
  -H "Authorization: Bearer $KWUGWO_SECRET_KEY"
[
  {
    "psp": "paystack",
    "banks": [
      { "code": "058", "name": "GTBank" },
      { "code": "044", "name": "Access Bank" }
    ]
  }
]