Dịch vụ API trung gian độc lập. Truy cập Claude Opus 4.6 với adaptive thinking. Streaming realtime, tiềm năng vô hạn.
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic({
apiKey: "sk-your-api-key",
baseURL: "http://pro-x.io.vn"
});
const msg = await client.messages.create({
model: "claude-sonnet-4-6",
max_tokens: 1024,
messages: [
{ role: "user", content: "Hello!" }
]
});
Phản hồi SSE tức thời
Dữ liệu của bạn là của bạn
So với giá gốc Anthropic
Theo dõi chi phí realtime
Giá tính theo credit / 1M token
Chọn gói phù hợp với nhu cầu sử dụng của bạn
Chỉ cần vài bước đơn giản để bắt đầu
Cài đặt Node.js và Bun trước khi bắt đầu.
Cài đặt Node.js
Tải và cài đặt từ trang chủ: nodejs.org
Cài đặt Bun
curl -fsSL https://bun.sh/install | bash
powershell -c "irm bun.sh/install.ps1 | iex"
Mở terminal và chạy lệnh sau:
bunx prox-claude-installer@latest
Tương thích hoàn toàn với Anthropic SDK.
import anthropic
client = anthropic.Anthropic(
api_key="sk-your-api-key",
base_url="http://pro-x.io.vn"
)
message = client.messages.create(
model="claude-sonnet-4-6",
max_tokens=1024,
messages=[
{"role": "user", "content": "Xin chào!"}
]
)
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic({
apiKey: "sk-your-api-key",
baseURL: "http://pro-x.io.vn"
});
const message = await client.messages.create({
model: "claude-sonnet-4-6",
max_tokens: 1024,
messages: [
{ role: "user", content: "Xin chào!" }
]
});
curl http://pro-x.io.vn/v1/messages \
-H "x-api-key: sk-your-api-key" \
-H "Content-Type: application/json" \
-H "anthropic-version: 2023-06-01" \
-d '{
"model": "claude-sonnet-4-6",
"max_tokens": 1024,
"messages": [
{"role": "user", "content": "Xin chào!"}
]
}'
Truy cập Dashboard để theo dõi số dư, chi phí và lịch sử sử dụng realtime. Đăng nhập bằng API key của bạn.