One place to connect.
A single base URL and a familiar request format. Less integration work between an idea and its first request.
Bring your ideas and your models together.
One familiar API. A clearer way to build.
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.
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/v1Private 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 services 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