Quick Start

Get started with Panda World in under 30 seconds. You only need two things: an API key and the endpoint URL.

Base URL: https://api.relay-station.com/v1

1. Get Your API Key

  1. Sign up at the Dashboard
  2. Go to API KeysCreate Key
  3. Copy the sk-... key (you won't see it again)

2. Make Your First Request

cURL

curl https://api.relay-station.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $RELAY_API_KEY" \
  -d '{
    "model": "deepseek-chat",
    "messages": [
      {"role": "user", "content": "Hello! Say hello back in Chinese."}
    ]
  }'

Python

from openai import OpenAI

client = OpenAI(
    base_url="https://api.relay-station.com/v1",
    api_key="sk-your-key-here"
)

response = client.chat.completions.create(
    model="deepseek-chat",
    messages=[{"role": "user", "content": "Hello! Say hello back in Chinese."}]
)

print(response.choices[0].message.content)
# => "你好!很高兴见到你!"

Node.js

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.relay-station.com/v1",
  apiKey: "sk-your-key-here",
});

const response = await client.chat.completions.create({
  model: "deepseek-chat",
  messages: [{ role: "user", content: "Hello! Say hello back in Chinese." }],
});

console.log(response.choices[0].message.content);
// => "你好!很高兴见到你!"

3. Check Your Usage

Visit the Usage Dashboard to see your request history, token count, and remaining balance.

Next Steps