Skip to main content
GET
/
api
/
system
/
config
Get System Configuration
curl --request GET \
  --url https://api.example.com/api/system/config
{
  "version": "1.0.0",
  "environment": "production",
  "features": {
    "streaming": true,
    "multiAgent": true,
    "tee": false
  },
  "limits": {
    "maxMessageLength": 10000,
    "maxAgentsPerUser": 10,
    "rateLimitPerMinute": 60
  }
}
Get the public system configuration. This endpoint returns non-sensitive configuration values that may be useful for clients.

Response

version
string
ElizaOS version
environment
string
Current environment: development, production
features
object
Enabled feature flags
limits
object
System limits and quotas
{
  "version": "1.0.0",
  "environment": "production",
  "features": {
    "streaming": true,
    "multiAgent": true,
    "tee": false
  },
  "limits": {
    "maxMessageLength": 10000,
    "maxAgentsPerUser": 10,
    "rateLimitPerMinute": 60
  }
}