Skip to main content
GET
/
api
/
public
/
organizations
List organizations
curl --request GET \
  --url https://charts.basedash.com/api/public/organizations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "customAiContext": "<string>",
      "onboardingStatus": "LEGACY",
      "fullEmbedEnabled": true,
      "embedAllowedOrigins": [
        "<string>"
      ]
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "hasMore": true
  }
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format: Bearer <basedash_api_key>

Query Parameters

limit
integer
default:50

Maximum number of items to return (1-100, default 50)

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination (ID of the last item from previous page)

Response

Organizations retrieved successfully

data
object[]
required
pagination
object
required