1. Bring Your OpenAI Key
You keep your own OpenAI API key. This product does not replace your billing relationship.
Hosted Routing Layer For OpenAI Traffic
/v1. Keep your own OpenAI key. Cut waste automatically.MODRO sits in front of your requests, routes simple work to cheaper models, preserves a high-quality path for harder prompts, and gives each tenant a private dashboard plus tenant-scoped model settings.
You bring your own OpenAI API key. Billing stays with your OpenAI account. We do not require new auth or account creation for the client flow.
import os
import requests
BASE_URL = "https://modro.ai/v1"
response = requests.post(
f"{BASE_URL}/chat/completions",
headers={"Authorization": f"Bearer {os.environ['OPENAI_API_KEY']}"},
json={
"model": "balanced",
"messages": [{"role": "user", "content": "Summarize the latest deploy notes."}]
},
timeout=30,
)
print(response.json()["choices"][0]["message"]["content"])
print(response.headers.get("X-Client-Dashboard-Url"))
The user journey is intentionally short. Understand the product, paste one snippet, send traffic to hosted /v1, choose a preset, then open the signed private dashboard URL returned by the API.
You keep your own OpenAI API key. This product does not replace your billing relationship.
/v1Your app sends requests to our hosted OpenAI-compatible endpoint. No full auth system or account migration required.
Each tenant gets a signed dashboard link in the response header. Use it to review savings and adjust model policy safely.
Users should not need to learn routing internals to get value. Presets stay simple, and the tier roles explain what each model is for.
$0.05 input / $0.40 output per 1M tokens. Best for the cheapest preset and low-stakes utility tasks.
$0.25 input / $2.00 output per 1M tokens. Strong default fast tier for real traffic.
$2.50 input / $15.00 output per 1M tokens. Use when quality matters more than speed or price.
Without a routing layer, expensive models end up handling a lot of routine traffic. That drives up cost and latency quietly. With tenant-scoped model policy and a private dashboard, the product stays easy to adopt and easy to trust.
No full account system. No prompt rewrites. Point traffic to hosted /v1 and start.
Signed dashboard links preserve tenant isolation without exposing admin surfaces to end users.
Users can immediately open settings, choose a preset, and keep sending live traffic.
It explains the hosted endpoint, your own OpenAI key, the signed dashboard flow, the preset choices, and copy-paste Python and JavaScript snippets.