X-Organization-Id header is needed or accepted.
Endpoint
Headers
Bearer token. Format:
Bearer <token>.Response
true on a successful response.Array of organizations the user belongs to.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve every organization the authenticated user belongs to, including name, slug, logo URL, and KYB verification status. No org context header required.
X-Organization-Id header is needed or accepted.
GET https://api.nyotaimara.com/v1/organizations
Bearer <token>.true on a successful response.Show data[]
null if not set.pending, submitted, approved, rejected.curl --request GET \
--url https://api.nyotaimara.com/v1/organizations \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": [
{
"orgId": "org_01j9kxyz",
"name": "Acme Kenya Ltd",
"slug": "acme-kenya",
"logoUrl": "https://cdn.nyotaimara.com/logos/acme-kenya.png",
"kybStatus": "approved"
}
]
}
curl --request GET \
--url https://api.nyotaimara.com/v1/organizations \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": [
{
"orgId": "org_01j9kxyz",
"name": "Acme Kenya Ltd",
"slug": "acme-kenya",
"logoUrl": "https://cdn.nyotaimara.com/logos/acme-kenya.png",
"kybStatus": "approved"
}
]
}