OpenRouter probe config for multi-model routing
When you run LLM features in production across multiple regions, a single OpenRouter endpoint is never enough. Model latency varies dramatically by geography, model availability shifts without warning, and your routing logic can become a silent performance bottleneck. The difference between configuring generic probes and setting up intelligent multi-model monitoring often means the difference between catching a degradation in real time and discovering it through customer support tickets.

Photo by tnfeez desgin from Pexels
When you run LLM features in production across multiple regions, a single OpenRouter endpoint is never enough. Model latency varies dramatically by geography, model availability shifts without warning, and your routing logic can become a silent performance bottleneck. The difference between configuring generic probes and setting up intelligent multi-model monitoring often means the difference between catching a degradation in real time and discovering it through customer support tickets.
This guide shows you how to configure Observinio probes for OpenRouter, monitor multiple models simultaneously across 21 regions, and use latency data to make concrete routing decisions, not guesses.
TL;DR
- OpenRouter bundles dozens of models behind a single API endpoint; probe configuration lets you measure TTFB (time to first byte) separately for each model and region.
- Set up daily probes from at least 4–6 regions covering your user base (US East, US West, EU, Asia) to catch regional degradation early.
- Use Observinio's weekly summaries and degradation alerts to inform routing fallbacks: if Claude 3.5 Sonnet is slow in Tokyo, switch to Mistral or GPT-4 Turbo automatically.
- Baseline TTFB for cached completion models sits around 200–400 ms in primary regions; extended thinking models may take 2–5 seconds on first call.
- Regional variance often exceeds model variance, focus probe placement and alert thresholds on geography first, then refine model selection within each region.
Key takeaway: Multi-model monitoring across distributed regions is not optional for production LLM systems. Synthetic probes running every 5–10 minutes from 4–6 strategically placed regions can reduce latency-related customer issues by 60–80% and improve cost efficiency by 30–50% through intelligent fallback routing based on real latency data, not vendor defaults.
Why multi-model monitoring matters
OpenRouter's value lies in its provider abstraction layer. Instead of managing separate API keys, quotas, and routing logic for OpenAI, Anthropic, Mistral, and a dozen other providers, you make a single request to OpenRouter and specify which model you want. But that simplicity is also a risk: when you don't know which models are actually fast in which regions, you default to whatever OpenRouter recommends, often the highest-quality (and slowest) option.
Real-world latency for the same model varies by 300–500 ms between US and Asia-Pacific regions. If your Tokyo users are waiting 2 seconds for a response while your San Francisco users see 600 ms, your routing is leaving money on the table. And if you've never measured regional latency per model, you won't spot it until your retention metrics tank.
Synthetic probes solve this by running regular, lightweight API calls from your monitoring regions and logging exact latency metrics. Unlike production traffic (which is noisy and sparse in some regions), probes give you consistent baselines and catch degradation within minutes, not hours.
Setting up your OpenRouter probe suite
OpenRouter's API is straightforward, but probe configuration requires thinking about what to measure, from where, and how often.
Step 1: Choose your models and regions
Start with three tiers of models based on your use cases:
- Fast, cheaper completions, Mistral 7B, Llama 2 70B, GPT-4 Turbo. Baseline TTFB: 150–300 ms.
- High-quality completions, Claude 3.5 Sonnet, GPT-4o, Gemini 2.0 Flash. Baseline TTFB: 250–400 ms.
- Extended reasoning, o1-mini, Claude 3 Opus (on long contexts). Baseline TTFB: 800 ms – 5 seconds (expect high variance).
- North America: US East (Virginia), US West (California)
- Europe: Frankfurt, London
- Asia-Pacific: Tokyo, Singapore
- Emerging: São Paulo, Dubai (if your user base extends there)
Step 2: Build the probe payload
Here's a minimal OpenRouter probe that measures TTFB reliably:
{
"model": "anthropic/claude-3.5-sonnet",
"messages": [
{
"role": "user",
"content": "Respond with a single word: ready."
}
],
"max_tokens": 10,
"temperature": 0
}
Why this payload?
- Fixed, short content ensures consistent latency; longer prompts add network roundtrip time and can mask regional differences.
- max_tokens: 10 caps response size so network egress doesn't dominate TTFB.
- temperature: 0 removes randomness; you want deterministic measurements.
- One model per probe makes latency attribution clear; don't test multiple models in a single request.
"The bundled google/veo-3.1-fast default supports 4/6/8 second durations, 720P/1080P resolutions, and 16:9/9:16 aspect ratios.">, OpenRouter
Step 3: Configure Observinio probes
In Observinio's dashboard, create a probe set with:
- Endpoint:
https://openrouter.ai/api/v1/chat/completions - Method: POST
- Frequency: Every 5 minutes (or every 10 minutes if cost is a concern; daily probes will miss degradation windows).
- Regions: Select your 4–6 target regions.
- Auth: Include your OpenRouter API key in the
Authorization: Bearerheader. - Payload: The JSON above, with one probe per model.
- Timeout: 30 seconds (OpenRouter SLA is typically under 15 seconds for standard models).
Interpreting latency baselines and setting alerts
Once probes run for a week, look at the distribution in Observinio's weekly summary:
| Model | US East | US West | Frankfurt | Tokyo |
|---|---|---|---|---|
| Mistral 7B | 180 ms | 200 ms | 220 ms | 450 ms |
| Claude 3.5 Sonnet | 320 ms | 380 ms | 410 ms | 780 ms |
| GPT-4o | 290 ms | 310 ms | 380 ms | 710 ms |
- Regional asymmetry: Tokyo is 2–3× slower than US. This is normal (distance, fewer redundant routes), but it tells you to stock faster fallbacks in Asia.
- Model-specific slowness: If Claude 3.5 Sonnet is consistently 100+ ms slower than GPT-4o in every region, factor that into your routing cost-benefit analysis.
- Sudden spikes: If Tuesday's probe shows 1200 ms for a model that normally runs 300 ms, that's a degradation event worth investigating.
- Warn threshold: 1.5× baseline (e.g., if Claude 3.5 Sonnet baseline in Tokyo is 780 ms, alert at 1170 ms).
- Critical threshold: 2.5× baseline (1950 ms).
- Duration: Alert only if threshold is breached for 3 consecutive probes (15 minutes), to avoid noise.
Building a multi-model routing fallback strategy
The real power of this setup is decision data. Once you have 2–3 weeks of latency history, you can make routing logic that actually matches production reality.
Routing decision tree
Here's a simple ruleset:
If Claude 3.5 Sonnet TTFB > 1000 ms in user region:
→ Fall back to GPT-4 Turbo
If GPT-4 Turbo TTFB > 900 ms:
→ Fall back to Mistral 7B
If Mistral 7B TTFB > 500 ms:
→ Queue request and retry in 30 seconds
If any model unavailable (HTTP 429 or 503):
→ Retry with next model in fallback list
This logic ensures users always get a response within your SLO (e.g., under 2 seconds), and you gracefully degrade to faster models when your preferred option is slow.
Latency vs. cost tradeoff
Observinio's baseline data lets you quantify this:
- Switching from Claude 3.5 Sonnet to Mistral 7B: latency reduction ~200 ms, cost reduction ~70%.
- Switching from GPT-4o to Mistral 7B: latency reduction ~100 ms, cost reduction ~60%.
Implementation checklist
Your progress is saved automatically in your browser.
Scaling beyond the basics
Once you have a baseline setup, expand by:
- Adding provider direct monitoring: In Observinio's dashboard, also probe OpenAI, Anthropic, and Mistral direct endpoints (if you have keys) in the same regions. Compare OpenRouter's latency to direct provider latency; if direct is faster, it may be worth routing around OpenRouter for specific models.
- Testing cost-latency Pareto frontier: For each region, identify the cheapest model that stays within your SLO. This often reveals opportunities to cut costs by 30–50% with no perceived quality loss.
- Monitoring provider-specific events: When OpenRouter reports an outage on their status page, Observinio's alerts will trigger before customer tickets arrive; use this to automate failover.
FAQ
Frequently Asked Questions
Stay ahead of latency regressions
Multi-model routing isn't a set-and-forget feature. Models get updated, providers add new capacity in some regions but not others, and user geography shifts. The moment you stop measuring, your routing logic starts drifting.
Set up Observinio's weekly summary email and assign someone (or automate a check) to review TTFB trends and degradation alerts every Monday morning. When you spot a regional slowdown, adjust your routing thresholds or fallback order within hours, not weeks. That feedback loop—measure, observe, decide, iterate—is what turns latency data into a competitive advantage.
Start with Observinio's 21-region coverage and OpenRouter's /providers/openrouter endpoint documentation. If you're still relying on guesswork to route between models, you're leaving latency and cost savings on the table.
Quick Win: Cost Reduction Opportunity
Switching from Claude 3.5 Sonnet to Mistral 7B in high-latency regions (Asia-Pacific) typically reduces costs by 70% while maintaining under 500 ms latency for most text completion tasks. Implement this first to fund expanded probe coverage across emerging markets.
Additional Resources
- OpenRouter - OpenRouter routes requests to many models behind one API and one key. Configure a default policy for all OpenRouter text-model requests with models.providers. ...
- 10 Best OpenRouter Alternatives in 2026 (Free & Paid) - TL;DR: The best OpenRouter alternatives in 2026 are Eden AI (500+ models including multimodal AI - best for teams needing more than LLM routing) ...
- [[Feature]: openclaw models status --probe --all — per- ...](https://github.com/openclaw/openclaw/issues/63145) - Multi-model configs are increasingly common — Users on OpenRouter routinely configure 10-15+ models across tiers (primary, fallbacks, image ...
Monitor AI API latency from 22 regions
Observinio runs daily probes against OpenRouter and OpenAI endpoints and emails you when latency degrades.
Set up alerts