Dashboard
Tokens
Models
Documentation
Total Models
Chat + Image
Active Tokens
In rotation
Accounts
In pool
Image Generation
Available
Live Token Pool
EmailTypeExpires InStatus
📋 Account Management
EmailPasswordAddedStatusActions
🚀 Batch Registration

API Integration

OpenAI Chat Completions

Seamlessly integrate with OpenAI-compatible clients using your existing codebases.

POST/v1/chat/completions
curl -X POST http://HOST:3077/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-4.1-mini",
    "messages": [{"role": "user", "content": "Hello!"}],
    "stream": false
  }'

Anthropic Messages

Compatible with Anthropic's Messages API

POST/v1/messages
curl -X POST http://HOST:3077/v1/messages \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -d '{
    "model": "claude-sonnet-4-6",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

OpenAI Responses

Compatible with OpenAI's Responses API

POST/v1/responses
curl -X POST http://HOST:3077/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-4.1-mini",
    "input": "Explain quantum computing"
  }'

Image Generation

Compatible with OpenAI's Image Generation API

POST/v1/images/generations
curl -X POST http://HOST:3077/v1/images/generations \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-image-1",
    "prompt": "A serene mountain landscape at sunset",
    "n": 1,
    "size": "1024x1024"
  }'

Management Endpoints

GET/v1/models — List all available models
GET/v1/images/models — List image models
GET/api/pool/stats — Pool statistics
GET/api/pool/accounts — List accounts
POST/api/pool/register — Auto-register new account
POST/api/pool/register/batch — Batch register
POST/api/pool/refresh — Force refresh tokens
DELETE/api/pool/accounts/:email — Remove account