One place to connect.
A single base URL and a familiar request format. Less integration work between an idea and its first request.
Connect Codex, Claude, OpenCode and more through one familiar API.
Keep one endpoint as your tools evolve.
Explore token pricing and available models. JavaScript is required for the calculator.
THE IDEA IS SIMPLE
Keep the interface familiar.
Make room for more possibilities.
A single base URL and a familiar request format. Less integration work between an idea and its first request.
Specify the model in your request. Keep that decision close to your application, where it belongs.
Key-based access and encrypted connections. A focused gateway with a small, straightforward surface.
ONE CONTINUOUS PATH
Your application keeps a familiar shape. XEDOC handles the connection between your request and the model you choose.
XEDOC
FAMILIAR BY DESIGN
Point your client at XEDOC, choose a model and send your request. The interface should feel like something you already know.
https://api.xedoc.top/v1
Create your account and API keys now. API requests require activation during private preview.
# A familiar request. A new connection.
curl https://api.xedoc.top/v1/responses \
-H "Authorization: Bearer $XEDOC_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "YOUR_MODEL_ID",
"input": "Make something worth building."
}'import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.xedoc.top/v1",
api_key=os.environ["XEDOC_API_KEY"],
)
response = client.responses.create(
model="YOUR_MODEL_ID",
input="Make something worth building.",
)A FEW DETAILS
XEDOC is an independent API gateway that connects your application to model providers through a common interface.
The gateway follows familiar OpenAI-compatible request formats. Set your base URL to https://api.xedoc.top/v1 and use your XEDOC API key. Feature support depends on the endpoint and selected model.
You can create an account, manage API keys and explore our model catalog in your workspace. XEDOC remains in private preview, so API requests require manual account activation.
ROOM FOR WHAT COMES NEXT
A considered interface for the next thing you build.
Create your account