Workspace

Manage API keys, recharge orders, usage logs, and account access.

Checking sign-in status...
Low balance. Recharge soon to avoid API interruptions.
Available Balance-
Today Spend-
This Month Spend-
Today Calls-

Supported Models

Quick Actions

After payment, balance is credited to your account. API keys can be generated freely or restricted to selected models.

USDT

Recharge Balance

USDT TRC20 recharge. Balance is credited automatically after payment.

0.00Today Spend USDT
0.00Current Balance (USDT)
0.00This Month Spend USDT
0Today Requests
USDT payment will be credited to account balance automatically.

Quick Amounts

API Keys

Charges are deducted from account balance based on the actual model used by each key.

API Endpoint
https://aiyrz.top/v1/chat/completions
Current Balance-
Today Spend-
Key Count-
Allowed Models-
Search & Filter
Generate Key Supports selected platform and model

Key Usage Details

NameSecretPlatformModelStatusCreated AtActions

Order Records

Usage Logs

API Examples

Replace tk_your_AIYRZ_API_KEY in the examples with a key generated in Workspace. Use this site as the Base URL; balance is billed by the actual model used.

Basic Setup
Base URL:https://aiyrz.top/v1
Chat Endpoint:https://aiyrz.top/v1/chat/completions
Authorization: Bearer tk_your_AIYRZ_API_KEY

PowerShell Example

$headers = @{
  "Authorization" = "Bearer tk_your_AIYRZ_API_KEY"
  "Content-Type" = "application/json"
}
$body = @{
  model = "deepseek-chat"
  messages = @(
    @{ role = "user"; content = "Hello, introduce yourself briefly." }
  )
} | ConvertTo-Json -Depth 8

Invoke-RestMethod `
  -Uri "https://aiyrz.top/v1/chat/completions" `
  -Method Post `
  -Headers $headers `
  -Body $body

Python SDK

from openai import OpenAI

client = OpenAI(
    api_key="tk_your_AIYRZ_API_KEY",
    base_url="https://aiyrz.top/v1",
)

resp = client.chat.completions.create(
    model="deepseek-chat",
    messages=[
        {"role": "user", "content": "Hello, write a short introduction."}
    ],
)

print(resp.choices[0].message.content)

JavaScript SDK

import OpenAI from "openai";

const client = new OpenAI({
  apiKey: "tk_your_AIYRZ_API_KEY",
  baseURL: "https://aiyrz.top/v1",
});

const resp = await client.chat.completions.create({
  model: "deepseek-chat",
  messages: [
    { role: "user", content: "Hello, write a short introduction." }
  ],
});

console.log(resp.choices[0].message.content);

Codex / OpenAI Compatible Tool

OPENAI_API_KEY=tk_your_AIYRZ_API_KEY
OPENAI_BASE_URL=https://aiyrz.top/v1

# Use the model ID from the Model Config Center
# For example: deepseek-chat, claude-sonnet-4-6, gpt-4o-mini

curl Example

curl -X POST "https://aiyrz.top/v1/chat/completions" \
  -H "Authorization: Bearer tk_your_AIYRZ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-chat",
    "messages": [
      {"role": "user", "content": "Hello"}
    ]
  }'

Account Settings

-
-
This workspace shows available entries based on your account permissions.
Back Home