Skip to main content
GET
/
v1
/
ugwo
curl -G https://api.kwugwo.africa/v1/ugwo \
  -H "Authorization: Bearer $KWUGWO_SECRET_KEY" \
  --data-urlencode "limit=50"
{
  "data": [
    {
      "uid": "ugw.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE",
      "amount": 500000,
      "currency": "NGN",
      "status": "ugwo_successful",
      "ref": "order_4719",
      "created_at": "2026-05-15T09:14:22+00:00"
    }
  ],
  "next_cursor": "eyJpZCI6MTIzfQ=="
}

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 a cursor-paginated list of ugwos belonging to the workspace that owns the secret key, newest first.

Query parameters

cursor
string
Cursor returned by the previous page’s next_cursor.
limit
integer
default:"10"
Page size, between 1 and 100.

Response

data
Ugwo[]
Page of ugwos. Each item matches the Create response.
next_cursor
string | null
Pass to the next request, or null on the last page.
curl -G https://api.kwugwo.africa/v1/ugwo \
  -H "Authorization: Bearer $KWUGWO_SECRET_KEY" \
  --data-urlencode "limit=50"
{
  "data": [
    {
      "uid": "ugw.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE",
      "amount": 500000,
      "currency": "NGN",
      "status": "ugwo_successful",
      "ref": "order_4719",
      "created_at": "2026-05-15T09:14:22+00:00"
    }
  ],
  "next_cursor": "eyJpZCI6MTIzfQ=="
}