clerk.list_organizations
List organizations in a connected Clerk application.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Returns organization id, name, slug, members_count, and created_at for each organization, plus total_count.
Cost = 5 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of organizations to return (1–500). | |
| query | No | Optional search string to filter organizations by name or slug. | |
| offset | No | Number of organizations to skip before returning results. | |
| clerk_instance_id | No | Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total_count | No | Total number of organizations in the Clerk application. | |
| organizations | No | Organizations returned for the requested page. |