Overview

Trạm AI cung cấp API tương thích OpenAI, cho phép bạn dùng các thư viện OpenAI SDK có sẵn hoặc gọi HTTP trực tiếp.

Base URL

https://api.staging.tram.ai.vn/v1

Endpoints

EndpointMethodMô tả
/v1/chat/completionsPOSTChat completion (OpenAI-compatible)
/v1/completionsPOSTText completion (legacy)
/v1/embeddingsPOSTTạo embeddings
/v1/messagesPOSTAnthropic Messages API
/v1/responsesPOSTOpenAI Responses API
/v1/images/generationsPOSTTạo ảnh từ text
/v1/images/editsPOSTChỉnh sửa ảnh
/v1/audio/speechPOSTText-to-Speech
/v1/audio/transcriptionsPOSTSpeech-to-Text
/v1/modelsGETLiệt kê models

Response Format

Tất cả endpoint trả về JSON theo chuẩn OpenAI, ví dụ:

1{
2 "id": "chatcmpl-...",
3 "object": "chat.completion",
4 "choices": [
5 {
6 "index": 0,
7 "message": {
8 "role": "assistant",
9 "content": "..."
10 },
11 "finish_reason": "stop"
12 }
13 ],
14 "usage": {
15 "prompt_tokens": 10,
16 "completion_tokens": 20,
17 "total_tokens": 30
18 }
19}