Base URL & Endpoints
Every model is reached through one base URL. Swap the domain in your client and leave your calling code unchanged.
Gateway base URL
https://gateway.admesh.ai/v1
Main endpoints
| Endpoint | Description |
|---|---|
POST /v1/chat/completions |
OpenAI-compatible chat completion (streaming supported) |
GET /v1/models |
List the model IDs available to your account |
Client base URLs by protocol
Most tools speak the OpenAI-compatible protocol and use the gateway URL directly; a few need a protocol-specific path:
# OpenAI-compatible
https://gateway.admesh.ai/v1
Anthropic- and Gemini-compatible clients are covered in the Coding Tools section.
The model ID lives in the request body
Model IDs use the namespace/model form, e.g. anthropic/claude-sonnet or openai/gpt-4o. The base URL carries no model information — each request names its model in the model field.