Requesty review: the 5% AI gateway, tested against its own claims

Requesty is an AI gateway and LLM router that charges a flat 5% markup on inference, with no subscription, no seat fees, and no minimum spend. It is the closest structural competitor to OpenRouter, and its clearest advantages are EU data residency and a documented Anthropic-wire endpoint that makes Claude Code work in three environment variables.

By the Continuum team. We build a workbench that runs Claude Code, Codex, and their peers, so the model rates quoted here are the ones our own cost analytics ship with.

The short version

Requesty is a hosted LLM gateway from a London company founded in 2023, which raised a $3M seed led by 20VC in September 2025. Pricing is a flat 5% markup on model cost: a model at $10 per million tokens costs $10.50 through Requesty. There is a free tier of 200 requests a day on free models, no seat fees, and no minimum spend. It offers cost, latency, and availability routing, failover chains, auto-caching, BYOK, PII masking, RBAC, and EU data residency in Frankfurt. Its own pages quote three different model counts, which is the main thing to be skeptical about.

What you need to know
  • Pricing is a flat 5% on inference. No subscription, no seats, no minimum spend.
  • Free tier: 200 requests/day on free models, no card, plus $10 signup credits.
  • Two base URLs: router.requesty.ai/v1 (OpenAI) and /anthropic/v1/messages (Anthropic).
  • EU data residency in Frankfurt via router.eu.requesty.ai. This is its sharpest differentiator.
  • Claude Code is a documented, first-class integration, not a community workaround.
  • Its own site says 600+, 400+, and 300+ models on different pages. Treat catalogue claims as approximate.

What Requesty is

Requesty is a hosted gateway: one API key, one endpoint, many providers. Structurally that is the same product as OpenRouter, and the company says so, positioning itself in its own funding announcement as "the premier OpenRouter alternative for EU companies".

The company, from its own funding post and public records.checked aug 2026
Founded2023, London
Funding$3M seed, led by 20VC, announced 26 September 2025
Other investorsTapestry VC, Insiders Ventures, Tiny Supercomputer
Stated scale70,000+ developers, 90+ billion tokens daily
ComplianceGDPR and HIPAA claimed; SOC 2 Type II "in progress"

Pricing, which is the cleanest in the category

Requesty prices the thing you are buying. There is no top-up fee, no minimum, no seat charge, and no monthly platform bill on the paid tier.

Requesty pricing, from requesty.ai/pricing.checked aug 2026
PlanPriceWhat you get
Free$0200 requests/day on free models, no card. Routing, caching, fallbacks, EU residency
Pay as you go5% markup on model costFull catalogue, BYOK, all routing and observability
EnterpriseCustomSSO, RBAC, custom SLAs, guardrails, PII detection

Their own worked example: "a model that costs $10 per 1M tokens from OpenAI costs $10.50 through Requesty." New accounts get $10 in credits at signup.

The same spend through each hosted gateway. 10M input and 2M output on Claude Sonnet 5 at $2/$10 per Mtok.
RouteToken costGateway takeTotal
Direct to Anthropic$40.00$0$40.00
Requesty (5% on inference)$40.00$2.00$42.00
OpenRouter (5.5% on top-up)$40.00$2.20$42.20
Vercel AI Gateway (0%)$40.00$0$40.00

Features that earn their place

  • Routing on three axes: cost, latency, and availability, plus weighted load balancing across models.
  • Failover chains. Requesty claims a "99.25% eventual success rate" against 85% for direct API calls. Treat that as a vendor benchmark, not a measurement of your traffic.
  • Auto-caching with zero configuration, plus manual cache control.
  • BYOK, so you keep negotiated provider rates.
  • Observability with cost, latency, time-to-first-token, P50 through P99, error rates, and cache savings, sliced by model, key, user, project, and team.
  • Request metadata tagging by feature, user, or trace id for spend attribution.
  • Governance: RBAC, approved-model allowlists, PII masking, budget controls, audit trails.
  • EU routing. Frankfurt-hosted endpoint at router.eu.requesty.ai.

How many models, actually

Requesty quotes different catalogue sizes depending where you land.

Model count by page, all read 19 August 2026.
PageClaim
requesty.ai homepage and pricing600+ models, 30+ providers
requesty.ai/llms.txt and /solution/llm-routing400+ models
docs.requesty.ai300+ models

None of these is verifiable from a public models endpoint the way OpenRouter's is, which is a real gap: OpenRouter's /api/v1/models returns a countable list, and that list came back at 415 entries. If catalogue breadth is your deciding factor, ask Requesty for the current list rather than picking a number off a page.

Setup, including Claude Code

Two base URLs, both documented, which is more than most gateways offer. The Anthropic-wire endpoint is the reason Requesty shows up in coding-agent conversations at all.

OpenAI-compatible. Works with the OpenAI SDK, LangChain, Vercel AI SDK, LlamaIndex, Haystack, Pydantic AI.
export OPENAI_BASE_URL="https://router.requesty.ai/v1"
export OPENAI_API_KEY="<your-requesty-key>"

# EU residency
export OPENAI_BASE_URL="https://router.eu.requesty.ai/v1"
Claude Code, in ~/.claude/settings.json. From the Requesty integration docs.
{
  "env": {
    "ANTHROPIC_BASE_URL": "https://router.requesty.ai",
    "ANTHROPIC_AUTH_TOKEN": "your_requesty_api_key",
    "ANTHROPIC_MODEL": "anthropic/claude-fable-5"
  }
}

Model ids take the form provider/model-name, and an organization can point a client at a named policy instead with policy/policy-name. Requesty's docs carry one caveat worth repeating verbatim: "We recommend using the ANTHROPIC_MODEL environment variable, and not the /model directive as Claude might not accept it sometimes."

Optional: tags every request with git branch, repository, and username.
curl -fsSL https://www.requesty.ai/claude/install.sh | bash

Requesty versus OpenRouter

The differences that actually decide it.
RequestyOpenRouter
Fee5% on inference5.5% on top-ups, $0.80 minimum
Minimum feeNone$0.80 per purchase
BYOK feeIncluded on pay-as-you-goFree below $25k/mo, then 5%
Verifiable catalogueNo public models endpointYes. 415 entries on 19 Aug 2026
EU data residencyYes, Frankfurt, all tiersEnterprise only (eu.openrouter.ai)
Anthropic-wire endpointYes, documentedYes, documented
Free tier200 req/day on free models50 req/day, or 1,000 after $10 spend
Governance (RBAC, PII masking)Enterprise tierLimited
Public app rankingsNoYes, via HTTP-Referer
Scale and ecosystem70,000+ developers250k+ apps, 4.2M+ users

The honest summary: OpenRouter is bigger, more verifiable, and more embedded in the ecosystem. Requesty is cheaper at the small end, better on European data residency, and further along on governance features. If you are an EU company that needs prompts to stay in Frankfurt without an enterprise contract, that single row decides it.

The honest limits

  • No public models endpoint. You cannot verify the catalogue the way you can with OpenRouter, and three pages give three numbers.
  • Marketing numbers move. Caching savings quoted as 90%, 80%, and 40% on different pages of the same site.
  • SOC 2 Type II is in progress, per their own funding post, while the homepage lists SOC2 in a compliance row.
  • Smaller than the incumbent. 70,000 developers and a $3M seed against OpenRouter's 250k+ apps. For a component that sits in your request path, vendor durability is a real input.
  • Still a third-party processor. EU residency changes where the data sits, not whether an extra party touches it. If that is the blocker, you want a self-hosted gateway.
  • Governance is gated. RBAC, PII detection, and guardrails are enterprise-tier, so the pay-as-you-go product is a router, not a control plane.

Questions people ask

What is Requesty?

Requesty is a hosted AI gateway and LLM router: one API key and one endpoint in front of hundreds of models from 30+ providers, with cost, latency, and availability routing, failover, caching, and spend analytics. It was founded in London in 2023 and raised a $3M seed led by 20VC in September 2025.

How much does Requesty cost?

A flat 5% markup on model cost, with no subscription, no seat fees, and no minimum spend. Their own example: a model that costs $10 per million tokens from OpenAI costs $10.50 through Requesty. There is a free tier of 200 requests per day on free models, plus $10 in signup credits, and a custom-priced enterprise tier.

Requesty vs OpenRouter: which is better?

They cost within a fifth of a percent of each other. OpenRouter is larger, has a publicly verifiable catalogue of 415 models, and gives free BYOK below $25,000 a month. Requesty has no minimum fee, EU data residency in Frankfurt on every tier rather than enterprise only, and RBAC and PII masking at the enterprise tier. For an EU company, the residency row usually decides it.

Does Requesty work with Claude Code?

Yes, and it is documented rather than a workaround. Set ANTHROPIC_BASE_URL to https://router.requesty.ai (or router.eu.requesty.ai), ANTHROPIC_AUTH_TOKEN to your Requesty key, and ANTHROPIC_MODEL to a provider/model id such as anthropic/claude-fable-5, in ~/.claude/settings.json. Their docs advise setting the model through the environment variable rather than the /model directive.

Is Requesty GDPR compliant?

Requesty describes itself as GDPR-compliant by design and offers EU data residency with Frankfurt-hosted servers via router.eu.requesty.ai. Its homepage also lists HIPAA and SOC2; its own funding post says SOC 2 Type II is in progress, so ask for the current attestation if compliance is a procurement gate.

How many models does Requesty support?

Depends which page you read: 600+ on the homepage and pricing page, 400+ on llms.txt and the routing solution page, 300+ in the docs, all checked 19 August 2026. There is no public models endpoint to count, unlike OpenRouter. Ask for the current list if catalogue size is your deciding factor.

Sources

Every figure above was read from these pages on August 2026. Vendors reprice without notice; if you find a stale number, tell us.

  1. Requesty pricing 5% markup, 200 free requests/day, no seat fees
  2. Requesty homepage 600+ models, 30+ providers, 70,000+ developers, compliance claims
  3. Requesty documentation base URLs, SDK compatibility, caching, BYOK
  4. Requesty Claude Code integration settings.json env vars and the /model caveat
  5. Requesty raises $3M 20VC lead, Sept 2025, EU positioning, SOC 2 in progress
  6. Requesty llms.txt 400+ models, 90B tokens daily, integrations list
  7. OpenRouter pricing comparison baseline: 5.5% fee, BYOK allowance
Try it

A gateway, or
a workbench?

If the traffic is coding agents, Continuum meters it by repo with no hop. Free with your own keys.

free app · your subscriptions · local-first