Skip to content

Quickstart

LLMTR exposes multiple LLM providers through a single OpenAI-compatible API endpoint. Keep your existing OpenAI SDK — just change the base URL and API key.

  1. Create an account and sign in. Register on the dashboard and complete email verification.
  2. Generate an API key. Go to Dashboard > API Keys and create a new key. The raw value is shown only once — save it securely.
  3. Send your first request. Use one of the examples below to hit /v1/chat/completions.

All requests use:

https://llmtr.com/v1
Terminal window
curl https://llmtr.com/v1/chat/completions \
-H "Authorization: Bearer sk_your_key" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4o",
"messages": [
{"role": "user", "content": "Hello!"}
],
"temperature": 0.7
}'