Skip to content

LLMTR Documentation

One endpoint. Every LLM. Transparent pricing.

LLMTR is a gateway that unifies access to dozens of LLMs through a single OpenAI-compatible API. Turkey-hosted models and global providers share the same surface. Keep your existing OpenAI SDKs — only update base_url and api_key.

Authentication

Works with Authorization: Bearer sk_.... Details.

Multimodal

Image, audio and file input for supported models. Explore.

Billing

Credit-based balance. A 6% margin applies on top-up. Details.

  • Canonical model ID: Every model is referenced as provider/model (e.g. openai/gpt-4o, google/gemini-2.5-flash). Pass this value in the request model field.
  • API key: Each key starts with sk_. The raw value is shown only once when the key is created.
  • Account isolation: API keys, usage records, and balances stay scoped to the owning account.
  • Prompt privacy: Prompt and response content is not stored. Only limited operational metrics such as usage and cost are kept.
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"}
]
}'

See Quickstart for the full walkthrough.