Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url http://localhost:8787/api/v1/llm/models \ --header 'Authorization: Bearer <token>'
import requests url = "http://localhost:8787/api/v1/llm/models" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('http://localhost:8787/api/v1/llm/models', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
List the language models available to power your agents
id
llm_model_id
GET /llm/providers
curl https://api.agentic-os.com/api/v1/llm/models \ -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
requests.get( "https://api.agentic-os.com/api/v1/llm/models", headers={"Authorization": f"Bearer {API_KEY}"}, )
await fetch("https://api.agentic-os.com/api/v1/llm/models", { headers: { Authorization: `Bearer ${API_KEY}` }, });