List organizations the current user belongs to
const url = 'https://app.everruns.com/api/v1/orgs';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.everruns.com/api/v1/orgsAuthorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”List of organizations
Response wrapper for list endpoints.
All list endpoints return responses wrapped in a data field.
object
Array of items returned by the list operation.
Response for organization operations
object
Base harness used when session creation omits harness_id.
When the organization was created
Default harness to preselect in the UI.
Default LLM model for the organization.
Org-level default provider per service (EVE-569), keyed by service kind. Empty when no org defaults are configured.
object
External identifier (org_<32-hex-chars>)
Display name
When the org’s creator finished or skipped the setup wizard. null means
onboarding is still incomplete, which the UI uses to resume the user at
/orgs/{id}/setup. Seeded/default and externally-synced orgs are complete.
When the organization was last updated
Example generated
{ "data": [ { "base_harness_id": "example", "created_at": "2026-04-15T12:00:00Z", "default_harness_id": "example", "default_model_id": "example", "default_provider_per_service": { "additionalProperty": "example" }, "id": "example", "name": "example", "onboarding_completed_at": "2026-04-15T12:00:00Z", "updated_at": "2026-04-15T12:00:00Z" } ]}