Skip to main content

Get an API key

Put Anthropic's Claude behind an OpenAI-compatible endpoint. Get a key, change one base URL, and ship.

Self-serve dashboard rolling out soon. For now we issue keys on request.

Step 1

Request your key

Tell us where to send it. We provision keys on request — typically within minutes during business hours.

Step 2

Point your SDK at one URL

Set the base URL to https://api.drawbridge-tech.com/v1 and use your key. No other code changes.

Step 3

Pay as you go

Simple usage-based pricing. Top up your balance and pay only for the tokens you use.

Your first request

Any OpenAI client works. Drop in your key and the base URL:

Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.drawbridge-tech.com/v1",
    api_key="your-api-key",
)

response = client.chat.completions.create(
    model="claude-sonnet-4-6",
    messages=[{"role": "user", "content": "Hello!"}],
    stream=True,
)

for chunk in response:
    print(chunk.choices[0].delta.content or "", end="")

What's included

  • Claude Opus & Sonnet via one endpoint
  • OpenAI-compatible — keep your SDK
  • Streaming (SSE) and tool calling
  • smart auto-selection model
  • Usage-based pricing, no minimums
  • Need to run it yourself? See private deployment