GET /settings/organization
Get the organization settings.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/settings/organization |
The default model and default environment every session falls back to when neither its request nor its automation names one, and the per-session budget ceiling no session may exceed.
curl "https://api.ellipsis.dev/v1/settings/organization" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.settings.organization.get()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.settings.organization.get();
console.log(result);Request
Response
Example response · 200
{
"default_environment": "string",
"default_model": "string"
}