드롭인 대체
OpenAI 및 Anthropic SDK와 호환됩니다. 기본 URL만 변경하세요.
모든 언어는 동등합니다. 사용하고 싶은 언어를 선택하세요.
The uncensored AI API: Shannon models with no refusals and no filters, served from our own GPUs. OpenAI- and Anthropic-compatible — drop in the SDK you already use, one key, streaming, tool calling and reasoning on every endpoint.
api-encrypted.shannon-ai.com shannon…4cad.onion acvnvkde….b32.i2p Tor & I2P endpoints → 9 Shannon tiers and 12 hosted open-weight models behind one endpoint, with streaming and tool calling on every id. Usage is billed against your token quota, valued at $5 per million quota tokens. Model ids are stable — pin them in production; GET /v1/models returns this same table.
| Model | Input | Structured output | In / out per 1M | |
|---|---|---|---|---|
3BIT-REAPDeepSeek · 1.6T MoE · 49B active | Text in | JSON schema | $1.95 / $3.90 | More → |
3BIT-REAPZ.ai · 744B MoE · 40B active | Text in | JSON schema | $0.73 / $2.34 | More → |
3BIT-REAPMoonshot AI · 2.8T MoE · 104B active | Text + image in | JSON schema | $3.83 / $19.12 | More → |
3BIT-REAPNVIDIA · 550B hybrid Mamba-Attention MoE · 55B active | Text in | JSON schema | $0.75 / $3.30 | More → |
3BIT-REAPMiniMax · 428B MoE · 23B active · sparse attention | Text + image in | JSON schema | $0.50 / $2.00 | More → |
W4A16-AUTOROUND-REAPDeepSeek · 284B MoE · 13B active | Text in | JSON schema | $0.50 / $2.00 | More → |
W4A16-AUTOROUND-REAPMoonshot AI · 1T MoE · 32B active | Text + image in | JSON schema | $0.78 / $3.67 | More → |
W4A16-AUTOROUND-REAPPoolside · 118B MoE · 8B active | Text in | No structured output | $0.50 / $2.00 | More → |
W4A16-AUTOROUND-REAPThinking Machines · 975B MoE · 41B active | Text + image in | JSON object | $1.42 / $6.07 | More → |
W8A16Xiaomi · 1.02T MoE · 42B active · 8-bit | Text in | JSON schema | $0.50 / $2.00 | More → |
W8A16Xiaomi · 8-bit multimodal · W8A16 | Text + image in | JSON schema | $0.50 / $2.00 | More → |
W8A16Tencent · 295B MoE · 21B active · 8-bit | Text in | JSON schema | $0.50 / $2.00 | More → |
| Model | Context | Input | Structured output | Price / 1M tokens |
|---|---|---|---|---|
shannon-1.6-lite | 192K | Text + image in | JSON schema | $3.90 |
shannon-1.6-pro | 192K | Text + image in | JSON schema | $7.80 |
shannon-2-lite | 192K | Text + image in | JSON schema | $3.90 |
shannon-2-pro | 192K | Text + image in | JSON schema | $5.85 |
shannon-3 | 192K | Text + image in | JSON schema | $3.35 |
shannon-3-pro | 192K | Text + image in | JSON schema | $3.35 |
shannon-3.1 | 192K | Text + image in | JSON schema | $3.35 |
shannon-3.1-pro | 192K | Text + image in | JSON schema | $3.35 |
shannon-coder-1 | 128K | Text in | JSON schema | $8.00 |
Streaming responses include exact token usage in the final chunk. You are billed for the tokens you send and the reasoning and answer you receive — never for the pipeline's own rendering passes.
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.shannon-ai.com/v1"
)
response = client.chat.completions.create(
model="shannon-3",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello, Shannon!"}
],
max_tokens=1024
)
print(response.choices[0].message.content) import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.shannon-ai.com/v1'
});
const response = await client.chat.completions.create({
model: 'shannon-3',
messages: [
{ role: 'system', content: 'You are a helpful assistant.' },
{ role: 'user', content: 'Hello, Shannon!' }
],
max_tokens: 1024
});
console.log(response.choices[0].message.content); package main
import (
"context"
"fmt"
openai "github.com/sashabaranov/go-openai"
)
func main() {
config := openai.DefaultConfig("YOUR_API_KEY")
config.BaseURL = "https://api.shannon-ai.com/v1"
client := openai.NewClientWithConfig(config)
resp, err := client.CreateChatCompletion(
context.Background(),
openai.ChatCompletionRequest{
Model: "shannon-3",
Messages: []openai.ChatCompletionMessage{
{Role: "system", Content: "You are a helpful assistant."},
{Role: "user", Content: "Hello, Shannon!"},
},
MaxTokens: 1024,
},
)
if err != nil {
panic(err)
}
fmt.Println(resp.Choices[0].Message.Content)
} curl -X POST "https://api.shannon-ai.com/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "shannon-3",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello, Shannon!"}
],
"max_tokens": 1024
}' {
"id": "chatcmpl-abc123",
"object": "chat.completion",
"created": 1234567890,
"model": "Shannon 1.6 Lite",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello! I'm Shannon, your AI assistant. How can I help you today?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 25,
"completion_tokens": 18,
"total_tokens": 43
}
} Try every model and endpoint in the browser with your own key — streaming output, request inspector, and generated code you can paste straight into your app.
Chat with any model, three endpoint dialects, tool calls, live latency and cost.
Everything the chat product can do, exposed over the wire.
OpenAI 및 Anthropic SDK와 호환됩니다. 기본 URL만 변경하세요.
도구를 정의하고 Shannon이 호출하도록 합니다. auto, forced, none 모드를 지원합니다.
출처 인용이 포함된 실시간 웹 검색. 자동으로 제공됩니다.
JSON 모드와 JSON Schema 강제로 신뢰할 수 있는 데이터 추출.
함수 실행 자동 루프. 요청당 최대 10회 반복.
Server‑Sent Events로 실시간 토큰 스트리밍.
Point your existing OpenAI or Anthropic SDK at Shannon and keep the same code. Every endpoint speaks the format you already use.
https://api.shannon-ai.com/v1/chat/completions function calling 및 streaming을 지원하는 Chat Completions API를 사용하세요.
https://api.shannon-ai.com/v1/messages tools와 anthropic-version 헤더를 사용하는 Claude Messages 형식입니다.
인증: Bearer <your-key> 또는 Claude 형식 호출에는 X-API-Key + anthropic-version을 사용하세요.
Public docs - Key required to call Streaming, function calling, 구조화 출력, 웹 검색.
One key works everywhere. OpenAI-style requests use a Bearer header; Anthropic-style requests use x-api-key.
Authorization: Bearer YOUR_API_KEY
x-api-key: YOUR_API_KEY anthropic-version: 2023-06-01
The API is also published as a Tor onion service and an I2P eepsite. Same routes, same key; only the base URL and the proxy change.
| Network | Base URL |
|---|---|
| Clear web | https://api.shannon-ai.com/v1 |
| Clear web (TLS, encrypted mirror) | https://api-encrypted.shannon-ai.com/v1 |
| Tor (onion service) | http://shannonmd773o5vxz75byha5rkea7nzr3srotw46uwythq3pjl6y4cad.onion/v1 |
| I2P (eepsite) | http://acvnvkdea4xaczzjap7chysqqi4kkvp2eorfwkasindzmjpa47da.b32.i2p/v1 |
cURL through Tor
cURL · Tor curl --socks5-hostname 127.0.0.1:9050 http://shannonmd773o5vxz75byha5rkea7nzr3srotw46uwythq3pjl6y4cad.onion/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "shannon-3-lite", "stream": true, "messages": [{"role": "user", "content": "Hello over Tor"}]}' cURL through I2P
cURL · I2P curl --proxy http://127.0.0.1:4444 http://acvnvkdea4xaczzjap7chysqqi4kkvp2eorfwkasindzmjpa47da.b32.i2p/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"
SDK base URL
Python · openai import httpx
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="http://shannonmd773o5vxz75byha5rkea7nzr3srotw46uwythq3pjl6y4cad.onion/v1",
http_client=httpx.Client(proxy="socks5h://127.0.0.1:9050", timeout=600),
) Cookies are never accepted on /v1, so the API key is the only credential. Streaming works over both networks; keep-alive frames are sent every few seconds.
from openai import OpenAI
import json
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.shannon-ai.com/v1"
)
# Define available tools/functions
tools = [
{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get current weather for a location",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name, e.g., 'Tokyo'"
},
"unit": {
"type": "string",
"enum": ["celsius", "fahrenheit"]
}
},
"required": ["location"]
}
}
}
]
response = client.chat.completions.create(
model="shannon-3",
messages=[{"role": "user", "content": "What's the weather in Tokyo?"}],
tools=tools,
tool_choice="auto"
)
# Check if model wants to call a function
if response.choices[0].message.tool_calls:
tool_call = response.choices[0].message.tool_calls[0]
print(f"Function: {tool_call.function.name}")
print(f"Arguments: {tool_call.function.arguments}") import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.shannon-ai.com/v1'
});
const tools = [
{
type: 'function',
function: {
name: 'get_weather',
description: 'Get current weather for a location',
parameters: {
type: 'object',
properties: {
location: { type: 'string', description: "City name" },
unit: { type: 'string', enum: ['celsius', 'fahrenheit'] }
},
required: ['location']
}
}
}
];
const response = await client.chat.completions.create({
model: 'shannon-3',
messages: [{ role: 'user', content: "What's the weather in Tokyo?" }],
tools,
tool_choice: 'auto'
});
if (response.choices[0].message.tool_calls) {
const toolCall = response.choices[0].message.tool_calls[0];
console.log('Function:', toolCall.function.name);
console.log('Arguments:', toolCall.function.arguments);
} "auto" | Model decides whether to call a function (default) |
"none" | Disable function calling for this request |
{"type": "function", "function": {"name": "..."}} | Force a specific function call |
{
"id": "chatcmpl-xyz",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": null,
"tool_calls": [
{
"id": "call_abc123",
"type": "function",
"function": {
"name": "get_weather",
"arguments": "{\"location\": \"Tokyo\", \"unit\": \"celsius\"}"
}
}
]
},
"finish_reason": "tool_calls"
}
]
} from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.shannon-ai.com/v1"
)
# Force JSON output with schema
response = client.chat.completions.create(
model="shannon-3",
messages=[
{"role": "user", "content": "Extract: John Doe, 30 years old, engineer"}
],
response_format={
"type": "json_schema",
"json_schema": {
"name": "person_info",
"schema": {
"type": "object",
"properties": {
"name": {"type": "string"},
"age": {"type": "integer"},
"occupation": {"type": "string"}
},
"required": ["name", "age", "occupation"]
}
}
}
)
import json
data = json.loads(response.choices[0].message.content)
print(data) # {"name": "John Doe", "age": 30, "occupation": "engineer"} import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.shannon-ai.com/v1'
});
const response = await client.chat.completions.create({
model: 'shannon-3',
messages: [
{ role: 'user', content: 'Extract: John Doe, 30 years old, engineer' }
],
response_format: {
type: 'json_schema',
json_schema: {
name: 'person_info',
schema: {
type: 'object',
properties: {
name: { type: 'string' },
age: { type: 'integer' },
occupation: { type: 'string' }
},
required: ['name', 'age', 'occupation']
}
}
}
});
const data = JSON.parse(response.choices[0].message.content);
console.log(data); // { name: "John Doe", age: 30, occupation: "engineer" } {"type": "json_object"} | Force valid JSON output (no specific schema) |
{"type": "json_schema", "json_schema": {...}} | Force output matching your exact schema |
Server-sent events, OpenAI chunk format. Thinking models stream reasoning_content deltas before the answer; the final chunk carries exact usage.
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.shannon-ai.com/v1"
)
# Enable streaming for real-time responses
# Thinking models stream reasoning_content first, then content
stream = client.chat.completions.create(
model="GLM-5.2-3BIT-REAP",
messages=[
{"role": "user", "content": "Write a short poem about AI"}
],
stream=True
)
for chunk in stream:
delta = chunk.choices[0].delta
if getattr(delta, "reasoning_content", None):
print(delta.reasoning_content, end="", flush=True) # thinking stream
if delta.content:
print(delta.content, end="", flush=True) import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.shannon-ai.com/v1'
});
// Enable streaming for real-time responses
// Thinking models stream reasoning_content first, then content
const stream = await client.chat.completions.create({
model: 'GLM-5.2-3BIT-REAP',
messages: [
{ role: 'user', content: 'Write a short poem about AI' }
],
stream: true
});
for await (const chunk of stream) {
const delta = chunk.choices[0]?.delta;
if (delta?.reasoning_content) process.stdout.write(delta.reasoning_content); // thinking stream
if (delta?.content) process.stdout.write(delta.content);
} POST /v1/responses — the OpenAI Responses dialect: instructions, input items, function_call / function_call_output for tool loops, reasoning summaries as output items. Same models, same key.
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.shannon-ai.com/v1")
response = client.responses.create(
model="shannon-3",
instructions="You are a concise assistant.",
input="Summarize the three-way handshake in two sentences.",
reasoning={"effort": "low"},
)
print(response.output_text)
# Tool loop: function_call items come back in response.output; answer them
# with function_call_output items on the next call. import OpenAI from 'openai';
const client = new OpenAI({ apiKey: 'YOUR_API_KEY', baseURL: 'https://api.shannon-ai.com/v1' });
const response = await client.responses.create({
model: 'shannon-3',
instructions: 'You are a concise assistant.',
input: 'Summarize the three-way handshake in two sentences.',
reasoning: { effort: 'low' },
});
console.log(response.output_text); Streaming emits response.created, reasoning_summary_text.delta, output_text.delta, function_call_arguments.delta and response.completed; a failed generation ends with response.failed. Non-streaming is the default.
Every thinking model streams its trace as reasoning_content deltas (or a thinking block) before the answer, and finish_reason: length tells you the answer hit max_tokens. The depth knob — reasoning_effort on /v1/chat/completions (off, low, medium, high), reasoning.effort on /v1/responses, thinking.budget_tokens on /v1/messages — is read by the hosted open-weight models; the Shannon tiers accept it and choose their own depth. GET /v1/models reports reasoning_effort per model.
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.shannon-ai.com/v1")
# reasoning_effort: off | low | medium | high. Read by the hosted open-weight
# models, where it sets how long the solve pass thinks. Shannon tiers accept the
# field and pick their own depth -- GET /v1/models reports which is which.
stream = client.chat.completions.create(
model="GLM-5.2-3BIT-REAP",
reasoning_effort="medium",
stream=True,
messages=[{"role": "user", "content": "Is 221 prime?"}],
)
for chunk in stream:
delta = chunk.choices[0].delta
if getattr(delta, "reasoning_content", None):
print(delta.reasoning_content, end="", flush=True) # thinking
if delta.content:
print(delta.content, end="", flush=True) # answer import OpenAI from 'openai';
const client = new OpenAI({ apiKey: 'YOUR_API_KEY', baseURL: 'https://api.shannon-ai.com/v1' });
// On /v1/messages the same knob is thinking: { type: 'enabled', budget_tokens }.
const stream = await client.chat.completions.create({
model: 'GLM-5.2-3BIT-REAP',
reasoning_effort: 'medium', // read by the hosted open-weight models
stream: true,
messages: [{ role: 'user', content: 'Is 221 prime?' }],
});
for await (const chunk of stream) {
const d = chunk.choices[0]?.delta ?? {};
if (d.reasoning_content) process.stdout.write(d.reasoning_content);
if (d.content) process.stdout.write(d.content);
} Set web_search: true and the model grounds its answer with live results.
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.shannon-ai.com/v1"
)
# Web search is automatically available!
# Shannon will use it when needed for current information
response = client.chat.completions.create(
model="shannon-3",
messages=[
{"role": "user", "content": "What are the latest AI news today?"}
],
# Optionally, explicitly define web_search tool
tools=[{
"type": "function",
"function": {
"name": "web_search",
"description": "Search the web for current information",
"parameters": {
"type": "object",
"properties": {
"query": {"type": "string", "description": "Search query"}
},
"required": ["query"]
}
}
}]
)
print(response.choices[0].message.content)
# Response includes sources and citations import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.shannon-ai.com/v1'
});
// Web search is automatically available!
// Shannon will use it when needed for current information
const response = await client.chat.completions.create({
model: 'shannon-3',
messages: [
{ role: 'user', content: 'What are the latest AI news today?' }
],
// Optionally, explicitly define web_search tool
tools: [{
type: 'function',
function: {
name: 'web_search',
description: 'Search the web for current information',
parameters: {
type: 'object',
properties: {
query: { type: 'string', description: 'Search query' }
},
required: ['query']
}
}
}]
});
console.log(response.choices[0].message.content);
// Response includes sources and citations Drop-in for the Anthropic SDK — point it at our base URL and keep your Messages code.
https://api.shannon-ai.com/v1/messages import anthropic
client = anthropic.Anthropic(
api_key="YOUR_API_KEY",
base_url="https://api.shannon-ai.com"
)
response = client.messages.create(
model="shannon-3",
max_tokens=1024,
messages=[
{"role": "user", "content": "Hello, Shannon!"}
],
# Tool use (Anthropic format)
tools=[{
"name": "web_search",
"description": "Search the web",
"input_schema": {
"type": "object",
"properties": {
"query": {"type": "string"}
},
"required": ["query"]
}
}]
)
print(response.content[0].text) import Anthropic from '@anthropic-ai/sdk';
const client = new Anthropic({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.shannon-ai.com'
});
const response = await client.messages.create({
model: 'shannon-3',
max_tokens: 1024,
messages: [
{ role: 'user', content: 'Hello, Shannon!' }
],
// Tool use (Anthropic format)
tools: [{
name: 'web_search',
description: 'Search the web',
input_schema: {
type: 'object',
properties: {
query: { type: 'string' }
},
required: ['query']
}
}]
});
console.log(response.content[0].text); Use Shannon as the model behind Claude Code, Codex CLI and other agent CLIs.
Anthropic's official CLI coding agent. Point it at Shannon to use as your AI backend for reading, editing, and running code directly in your terminal.
ANTHROPIC_BASE_URL=https://api.shannon-ai.com ANTHROPIC_API_KEY=sk-YOUR_KEY claude OpenAI's open-source coding agent. Uses the Responses API for multi-turn tool use, file editing, and shell commands — all routed through Shannon.
OPENAI_BASE_URL=https://api.shannon-ai.com/v1 OPENAI_API_KEY=sk-YOUR_KEY codex # Install Claude Code (requires Node.js 18+) npm install -g @anthropic-ai/claude-code # Connect to Shannon AI as backend export ANTHROPIC_BASE_URL=https://api.shannon-ai.com export ANTHROPIC_API_KEY=sk-YOUR_API_KEY # Launch Claude Code in bare mode (no Anthropic account needed) claude # Or run a one-shot command claude -p "Explain this codebase" # Claude Code will use Shannon's Anthropic-compatible API # for all AI operations: reading files, editing code, # running tests, and multi-turn tool use.
# Alternative: set env vars permanently in your shell profile # ~/.bashrc or ~/.zshrc export ANTHROPIC_BASE_URL=https://api.shannon-ai.com export ANTHROPIC_API_KEY=sk-YOUR_API_KEY # Then just run: claude # Supported features through Shannon: # - Multi-turn conversations with full context # - File reading and editing (tool use) # - Shell command execution # - Streaming responses # - All Claude Code slash commands (/compact, /clear, etc.)
# Install Codex CLI npm install -g @openai/codex # Connect to Shannon AI as backend export OPENAI_BASE_URL=https://api.shannon-ai.com/v1 export OPENAI_API_KEY=sk-YOUR_API_KEY # Launch Codex codex # Or run a one-shot command codex "fix the bug in main.py" # Codex uses the Responses API (POST /v1/responses) # Shannon handles tool calls including: # - Reading and writing files # - Running shell commands # - Multi-turn function calling
# Alternative: set env vars permanently # ~/.bashrc or ~/.zshrc export OPENAI_BASE_URL=https://api.shannon-ai.com/v1 export OPENAI_API_KEY=sk-YOUR_API_KEY # Then just run: codex # Supported features through Shannon: # - Responses API with full tool use # - Function calling (file read/write, shell exec) # - Streaming with real-time output # - Multi-turn conversations # - All Codex approval modes (suggest, auto-edit, full-auto)
Any OpenAI or Anthropic SDK works out of the box.
Official OpenAI Python SDK - works with Shannon
pip install openai Documentation → Official OpenAI Node.js SDK - works with Shannon
npm install openai Documentation → Community Go client for OpenAI-compatible APIs
go get github.com/sashabaranov/go-openai Documentation → Community Ruby client for OpenAI-compatible APIs
gem install ruby-openai Documentation → Community PHP client for OpenAI-compatible APIs
composer require openai-php/client Documentation → Async Rust client for OpenAI-compatible APIs
cargo add async-openai Documentation → Official Anthropic Python SDK - works with Shannon
pip install anthropic Documentation → Official Anthropic TypeScript SDK - works with Shannon
npm install @anthropic-ai/sdk Documentation → | Status | Type | Meaning |
|---|---|---|
400 | 잘못된 요청 | 요청 형식 또는 파라미터가 잘못되었습니다 |
401 | 인증되지 않음 | API 키가 없거나 유효하지 않습니다 |
429 | 쿼터 초과 | 토큰 또는 검색 쿼터를 초과했습니다 |
429 | 요청 제한 | 요청이 너무 많습니다. 속도를 줄이세요 |
500 | 서버 오류 | 내부 오류입니다. 나중에 다시 시도하세요 |
{
"error": {
"message": "Invalid API key provided",
"type": "authentication_error",
"code": "invalid_api_key"
}
} Sign in to view and manage your API key.
•••••••••••••••• Sign in API 키를 비밀로 유지하세요. 재생성하면 새 키가 생성되고 기존 키는 무효화됩니다.
로그인하여 잔액을 확인하세요. 호스팅 또는 Shannon 모델의 모든 API 호출은 채팅과 동일한 잔액에서 차감됩니다: 오늘 자 플랜 할당량이 먼저 차감된 후, 구매한 크레딧이 사용됩니다.
| 모델 | 종류 | 호출 수 | 지출 |
|---|
아직 API 키 호출 내역이 없습니다. API 키로 요청한 내역이 모델별 가격으로 여기에 표시됩니다.
모델별 가격은 위의 '모델 및 가격' 섹션에 나와 있습니다. 호스팅 모델은 입력과 출력을 별도로 청구하며, Shannon 모델은 단일 요율로 청구합니다. 두 방식 모두 1M 쿼터 토큰당 $5의 잔액에서 정산됩니다. 가격 보기 →
Sign in to see your recent API activity.
| Time | Endpoint | Model | Billed tokens | 비용 |
|---|
No API calls yet. Your first request will show up here.
Free tier included with every account. Your key is one click away.