S
SHADIE AI
Token Platform

คู่มือการใช้งาน

User Guide

สำหรับผู้เริ่มต้นใช้งาน Shadie AI แปลภาษาและเขียนเนื้อหาด้วย AI

A beginner's guide to using Shadie AI for translation and content writing.

วิธีการเริ่มต้นใช้งาน

Getting Started — A Complete Tutorial

1

สมัครสมาชิก

Create an Account

ไปที่หน้า สมัครสมาชิก กรอกอีเมลของคุณ จากนั้นกด "ส่งรหัสยืนยัน" เช็คอีเมลเพื่อรับรหัส 6 หลัก กรอกรหัส ตั้งชื่อผู้ใช้และรหัสผ่าน กด "สร้างบัญชี" คุณจะได้รับ 100,000 Token ฟรีทันที

Go to the Registration page. Enter your email, click "Send Code", check your inbox for the 6-digit code, enter it, set a display name and password, then click "Create Account". You'll receive 100,000 free Tokens instantly.

💡 เคล็ดลับ / Tip: ตรวจสอบโฟลเดอร์สแปมถ้าไม่เจออีเมลยืนยัน / Check your spam folder if you don't see the verification email.

2

เข้าสู่ระบบและรับ API Key

Log In & Get Your API Key

ไปที่หน้า เข้าสู่ระบบ กรอกอีเมลและรหัสผ่านของคุณ หลังจากเข้าสู่ระบบ คุณจะถูกนำไปยังแดชบอร์ด OneAPI ให้คัดลอก API Key ที่แสดงในหน้า Dashboard

Go to the Login page and enter your email and password. After logging in, you'll be taken to the OneAPI dashboard. Copy the API Key shown there.

🔑 API Key ของคุณ / Your API Key: เก็บไว้เป็นความลับ อย่าแชร์กับผู้อื่น / Keep it secret — never share it with others.

3

เชื่อมต่อ API — ใช้ API Key ของคุณ

Connect via API — Use Your API Key

API endpoint ของเราคือ https://tai.shadie-oneapi.com/oneapi/v1 ใช้ API Key ของคุณในส่วนหัว Authorization: Bearer YOUR_KEY

Our API endpoint is https://tai.shadie-oneapi.com/oneapi/v1. Pass your API Key in the Authorization: Bearer YOUR_KEY header.

🐍 Python

from openai import OpenAI

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

response = client.chat.completions.create(
    model="deepseek-v3",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

⬡ cURL

curl https://tai.shadie-oneapi.com/oneapi/v1/chat/completions \
  -H "Authorization: Bearer sk-your-api-key-here" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v3",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

📘 JavaScript

const response = await fetch("https://tai.shadie-oneapi.com/oneapi/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer sk-your-api-key-here",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "deepseek-v3",
    messages: [{role: "user", content: "Hello!"}]
  })
});
const data = await response.json();
console.log(data.choices[0].message.content);
4

ใช้กับแอปพลิเคชัน AI

Use with AI Applications

API Key ของเราทำงานกับเครื่องมือใดๆ ที่รองรับ OpenAI API format เพียงแค่เปลี่ยน endpoint เป็นของเรา:

Our API Key works with any tool that supports the OpenAI API format. Just change the endpoint to ours:

🟢

OpenCat

macOS/iOS — ตั้งค่า Provider → OpenAI Compatible → ใส่ URL และ Key

Set Provider → OpenAI Compatible → enter endpoint URL and API Key

💬

ChatBox / ChatHub

Desktop — เปิดการตั้งค่า → เพิ่ม Custom Provider → ใส่ Base URL และ API Key

Open settings → Add Custom Provider → enter Base URL and API Key

🖥️

Cursor / VS Code Extensions

ใช้กับ AI coding assistant — ตั้ง OpenAI Compatible API ใน Settings

Use with AI coding assistants — set OpenAI Compatible API in Settings.

5

เติม Token

Top Up Tokens

เมื่อ Token ใกล้หมด ไปที่หน้า ราคา เลือกแพ็กเกจที่ต้องการ ชำระเงินผ่าน Paddle รองรับ TrueMoney Wallet, บัตรเครดิต/เดบิต, และ PayPal Token จะถูกเพิ่มเข้าบัญชีของคุณทันที

When Tokens run low, visit the Pricing page and choose a plan. Payment via Paddle — supports TrueMoney Wallet, credit/debit cards, and PayPal. Tokens are credited instantly.

การเติมเงิน / Topping up: Token ไม่หมดอายุเมื่อซื้อแพ็กเกจแบบจ่ายครั้งเดียว / Tokens never expire when purchasing one-time packs.