Everstack
API ReferenceOpenai agents restGet Capabilities

Get Capabilities

GET/v1/openai-agents/capabilities
GET/v1/openai-agents/capabilities

Your instance endpoint, shown on the instance page in the dashboard. Each instance has its own host; there is no shared API host.

Responses

200 Success

PropertyTypeDescription
enabledboolean
providerstring
environment_modesstring[]
tool_typesstring[]
file_operationsstring[]
executor_versionstring
readinessstring
can_manage_connectionsboolean
can_run_sessionsboolean
can_resolve_approvalsboolean

400 Invalid request

PropertyTypeDescription
errorobject

403 Permission denied

PropertyTypeDescription
errorobject

404 Not found

PropertyTypeDescription
errorobject

500 Internal error

PropertyTypeDescription
errorobject

503 Unavailable

PropertyTypeDescription
errorobject

Request

curl -X GET "http://localhost:8089/v1/openai-agents/capabilities" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
const response = await fetch("http://localhost:8089/v1/openai-agents/capabilities", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
});
const data = await response.json();
import requests

response = requests.get(
    "http://localhost:8089/v1/openai-agents/capabilities",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
)
data = response.json()

Response

{
  "enabled": true,
  "provider": "string",
  "environment_modes": [
    "string"
  ],
  "tool_types": [
    "string"
  ],
  "file_operations": [
    "string"
  ],
  "executor_version": "string",
  "readiness": "string",
  "can_manage_connections": true,
  "can_run_sessions": true,
  "can_resolve_approvals": true
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}