Personal automation
Automate your BetterWaifu workflow.
The Personal Access API lets subscribers connect Discord bots, scripts, and personal tools to their own account. Uses your subscription and credits — no separate API fee.
Making an app? Our Developer API is application only. Apply by sending your app URL to developers@betterwaifu.com.
Personal access keys
Create named keys and revoke them without touching your account login.
Async jobs
Submit a generation, poll job status, and receive private CDN image URLs.
Your credits
Included with any active subscription. Each generation uses credits from your account.
Quickstart
1. List available models
curl https://betterwaifu.com/api/v1/models \ -H "Authorization: Bearer $BETTERWAIFU_API_KEY"
2. Submit a generation
curl -X POST https://betterwaifu.com/api/v1/generate \
-H "Authorization: Bearer $BETTERWAIFU_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "anime girl, cinematic lighting, detailed illustration",
"model_version_id": 533326,
"batch_size": 1
}'3. Poll until complete
curl https://betterwaifu.com/api/v1/generate/job_abc123 \ -H "Authorization: Bearer $BETTERWAIFU_API_KEY"
API surface
GET
/api/v1/accountCheck credits and subscription state.
GET
/api/v1/modelsList generation-enabled model versions.
POST
/api/v1/generateSubmit an image generation job.
GET
/api/v1/generate/:idPoll job status and retrieve outputs.
Full reference: API documentation