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.
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
Private preview. Model requests will be available when access opens.
# 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.
XEDOC is currently in private preview. Public key creation, pricing and model availability will be published when access opens.
ROOM FOR WHAT COMES NEXT
A considered interface for the next thing you build.
Explore XEDOC