API Reference
- GETHealth check
- GETGet runtime configuration
- GETGet VSCode URL
- GETGet runtime hosts
- POSTSubmit feedback
- GETList files
- GETGet file content
- GETDownload workspace as zip
- GETGet git changes
- GETGet git diff
- GETGet trajectory
- GETSecurity analyzer API (GET)
- PUTSecurity analyzer API (PUT)
- POSTSecurity analyzer API (POST)
- DELSecurity analyzer API (DELETE)
- GETSearch conversations
- POSTCreate new conversation
- GETGet conversation
- DELDelete conversation
- PATCHUpdate conversation
- GETGet user repositories
- GETGet user info
- GETSearch repositories
- GETGet suggested tasks
- GETGet settings
- POSTStore settings
- POSTReset settings (Deprecated)deprecated
- POSTUnset settings tokens
- GETGet models
- GETGet agents
- GETGet security analyzers
- GETGet config
API Reference
Get settings
Get user settings
GET
/
api
/
settings
curl --request GET \
--url https://app.all-hands.dev/api/settings \
--header 'Authorization: Bearer <token>'
{
"language": "<string>",
"agent": "<string>",
"security_analyzer": "<string>",
"confirmation_mode": true,
"llm_model": "<string>",
"llm_api_key_set": true,
"llm_base_url": "<string>",
"remote_runtime_resource_factor": 123,
"enable_default_condenser": true,
"enable_sound_notifications": true,
"user_consents_to_analytics": true,
"provider_tokens_set": {}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
User settings
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://app.all-hands.dev/api/settings \
--header 'Authorization: Bearer <token>'
{
"language": "<string>",
"agent": "<string>",
"security_analyzer": "<string>",
"confirmation_mode": true,
"llm_model": "<string>",
"llm_api_key_set": true,
"llm_base_url": "<string>",
"remote_runtime_resource_factor": 123,
"enable_default_condenser": true,
"enable_sound_notifications": true,
"user_consents_to_analytics": true,
"provider_tokens_set": {}
}
Assistant
Responses are generated using AI and may contain mistakes.