Skip to main content
GET
/
api
/
public
/
tenants
curl "https://api.crovver.com/api/public/tenants" \
  -H "Authorization: Bearer sk_live_..."
{
  "success": true,
  "data": [
    {
      "id": "ten_crovver_xyz",
      "externalTenantId": "workspace_abc123",
      "name": "Acme Corp",
      "slug": "acme-corp",
      "isActive": true,
      "createdAt": "2025-01-01T00:00:00Z"
    }
  ]
}
Returns all tenants associated with the organization.

Query Parameters

publicKey
string
Your public key (alternative to Authorization header)

Authentication

Requires a secret key (Authorization: Bearer sk_live_...) or public key.
curl "https://api.crovver.com/api/public/tenants" \
  -H "Authorization: Bearer sk_live_..."
{
  "success": true,
  "data": [
    {
      "id": "ten_crovver_xyz",
      "externalTenantId": "workspace_abc123",
      "name": "Acme Corp",
      "slug": "acme-corp",
      "isActive": true,
      "createdAt": "2025-01-01T00:00:00Z"
    }
  ]
}