Skip to main content
GET
/
v1
/
onye
curl -G https://api.kwugwo.africa/v1/onye \
  -H "Authorization: Bearer $KWUGWO_SECRET_KEY" \
  --data-urlencode "limit=50"
{
  "data": [
    {
      "uid": "ony.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE",
      "email": "ada@example.com",
      "first_name": "Ada",
      "last_name": "Okeke",
      "status": "active"
    }
  ],
  "next_cursor": null
}

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 onyes on the workspace, newest first.

Query parameters

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

Response

data
Onye[]
Page of customers. Each item matches the Create response.
next_cursor
string | null
Cursor for the next page, or null on the last page.
curl -G https://api.kwugwo.africa/v1/onye \
  -H "Authorization: Bearer $KWUGWO_SECRET_KEY" \
  --data-urlencode "limit=50"
{
  "data": [
    {
      "uid": "ony.VCvr.7K2qPmRtV9xLnQ8sD1cYwHfE",
      "email": "ada@example.com",
      "first_name": "Ada",
      "last_name": "Okeke",
      "status": "active"
    }
  ],
  "next_cursor": null
}