BazaarLinkBazaarLink
Sign in
DocsAPI ReferenceSDK ReferenceAgentic UsageAI Skills
Organizations

List organizations

Lists every organization the caller belongs to along with their role in each, sorted by join date. Authentication here is looser than every other organization endpoint — any valid sk-bl- key works (standard or management), unlike everything downstream of an orgId (organization detail, teams, members), which all require a Management API Key. The id field on each returned organization is the orgId used by those endpoints.

GET/api/v1/orgs

Authorizations

Authorizationrequired
string · header

API key as bearer token in the Authorization header.

GET /api/v1/orgs
curl https://bazaarlink.ai/api/v1/orgs \
  -H "Authorization: Bearer $BAZAARLINK_API_KEY"
Response examples

Success. orgs[] is sorted by join date, and each entry includes the caller's role and join date in that organization.

{
  "orgs": [
    {
      "id": "org_abc123",
      "name": "Acme Corp",
      "slug": "acme-corp",
      "plan": "enterprise",
      "billingModel": "invoice",
      "credits": 1250.5,
      "createdAt": "2026-03-01T00:00:00.000Z",
      "role": "org_admin",
      "joinedAt": "2026-03-01T00:00:00.000Z"
    }
  ]
}
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
List organizations — BazaarLink API