Quick heads-up for anyone needing Claude API access without paying upfront.
SeekAI gives $220 in free credits upon registration. The model claude-fable-5-1 is billed flat at $1 per request, meaning you get exactly 220 requests out of the free sign-up balance. It uses the standard OpenAI endpoint format, so it plugs directly into Cursor, NextChat, SillyTavern, Chatbox, or terminal scripts.
1. Create an Account
Sign up to claim the $220 credit balance
---
You do not have permission to view the full content of this post. Log in or register now.
2. Get Your Token
Head to the API Keys / Tokens section in your dashboard, generate a key, and copy it.
3. API Configuration
Bash
curl You do not have permission to view the full content of this post. Log in or register now. \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "claude-fable-5-1",
"messages": [{"role": "user", "content": "ping"}]
}'
Notes
SeekAI gives $220 in free credits upon registration. The model claude-fable-5-1 is billed flat at $1 per request, meaning you get exactly 220 requests out of the free sign-up balance. It uses the standard OpenAI endpoint format, so it plugs directly into Cursor, NextChat, SillyTavern, Chatbox, or terminal scripts.
1. Create an Account
Sign up to claim the $220 credit balance
---
You do not have permission to view the full content of this post. Log in or register now.
2. Get Your Token
Head to the API Keys / Tokens section in your dashboard, generate a key, and copy it.
3. API Configuration
- Provider Format: OpenAI-Compatible
- Base URL: You do not have permission to view the full content of this post. Log in or register now.
- Model ID: claude-fable-5-1
- Rate / Cost: $1 / request (Deducts from your $220 balance)
Bash
curl You do not have permission to view the full content of this post. Log in or register now. \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "claude-fable-5-1",
"messages": [{"role": "user", "content": "ping"}]
}'
Notes
- The dashboard lists ~145s latency and ~8 TPS, so expect slow responses during peak times. Best suited for testing, batch jobs, or offline completions.
- Make sure your client doesn't double-append /chat/completions if it already handles OpenAI paths automatically.