Quick Start

Getting started with TransAtlas API is easy. Simply replace the OpenAI API base URL and use your TransAtlas API Key.

curl https://proxy.transatlas.co/v1/chat/completions \n -H "Content-Type: application/json" \n -H "Authorization: Bearer YOUR_API_KEY" \n -d '{ "model": "gpt-4o", "messages": [{ "role": "user", "content": "Hello" }] }'

Endpoints

POST /v1/chat/completions

Create a chat completion.

GET /v1/models

List all available models.

Authentication

Authenticate your requests by including your API Key in the Authorization header:

Authorization: Bearer sk-client-xxxxxxxxxxxxxxxx