LLM Proxy
LLM Proxy API docs
Test Authentication
Paste a valid LLM Proxy API key to run endpoint tests.
List Models
Returns all currently available logical models for your key.
GET/v1/models
cURL example
bash
curl -s http://localhost:3000/v1/models \
-H "Authorization: Bearer $LLM_PROXY_API_KEY"Response example
json
{
"object": "list",
"data": [
{
"id": "gpt-4.1-mini",
"object": "model",
"created": 1735678910,
"owned_by": "llm-proxy"
}
]
}Try It
GET
/v1/modelsRun a live request using a pasted API key.
Select an account key or paste a manual key first to test endpoints.