Skip to main content
GET
/
api
/
capabilities
List gateway capabilities
curl --request GET \
  --url https://litellm-rust.onrender.com/api/capabilities \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://litellm-rust.onrender.com/api/capabilities"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://litellm-rust.onrender.com/api/capabilities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "providers": [
    "anthropic",
    "openai"
  ],
  "mcp_servers": [
    "<string>"
  ],
  "runtimes": [
    "local-opencode",
    "cursor"
  ]
}

Authorizations

Authorization
string
header
required

Your LITELLM_MASTER_KEY. Default for local Docker Compose: sk-local

Response

Providers, endpoints, MCP servers, and agents

providers
string[]
Example:
["anthropic", "openai"]
mcp_servers
string[]
runtimes
string[]
Example:
["local-opencode", "cursor"]