Plug & Play

Works With Your Stack

OpenAI-compatible API. Drop-in replacement for any OpenAI SDK. Works with LangChain, LlamaIndex, Vercel AI SDK, and more.

View documentation

01Integrations

Works With Your Stack

OpenAI-compatible API. Drop-in replacement for any OpenAI SDK. Zero refactoring needed.

API Compatibility100%

Before

client = OpenAI(
  api_key="sk-..."
)

After (one line change)

client = OpenAI(
  api_key="req-...",
  base_url="https://router.requesty.ai/v1"
)
EndpointsChat CompletionsEmbeddingsStreamingFunction CallingVision

02Code

One Line to 600+ Models

Use the OpenAI Python package with Requesty's base URL

main.pyPython
from openai import OpenAI

client = OpenAI(
    base_url="https://router.requesty.ai/v1",
    api_key="your-requesty-key"
)

# Access any model from any provider
response = client.chat.completions.create(
    model="anthropic/claude-opus-4-6",
    messages=[{"role": "user", "content": "Hello!"}]
)
  • OpenAI Compatible
  • Streaming Support
  • Function Calling

Start integrating with Requesty

No credit card required.

View pricing