List organizations the current user belongs to
GET
/v1/orgs
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
Media type application/json
Response wrapper for list endpoints.
All list endpoints return responses wrapped in a data field.
object
data
required
Array of items returned by the list operation.
Array<object>
Response for organization operations
object
base_harness_id
Base harness used when session creation omits harness_id.
string | null
created_at
required
When the organization was created
string format: date-time
default_harness_id
Default harness to preselect in the UI.
string | null
default_model_id
Default LLM model for the organization.
string | null
id
required
External identifier (org_<32-hex-chars>)
string
name
required
Display name
string
updated_at
required
When the organization was last updated
string format: date-time
Example generated
{ "data": [ { "base_harness_id": "example", "created_at": "2026-04-15T12:00:00Z", "default_harness_id": "example", "default_model_id": "example", "id": "example", "name": "example", "updated_at": "2026-04-15T12:00:00Z" } ]}