Fellowi

API Console

Call the Fellowi Images generator from your own code. Same model, same price, same coin wallet - just an API key instead of the web form.

Authentication

Every request needs an API key in the Authorization header: Authorization: Bearer fk_live_.... Keys are created below and shown only once at creation - store yours somewhere safe.

Model

There is one model, always available to any active key.

fellowi-nsfw-image-1 - NSFW image model, uncensored, 1.5K/2K resolution

Create an image

POST /v1/api/images returns 202 immediately with a queued generation; the image itself takes up to a few minutes.

curl -X POST https://fellowi.com/api/v1/api/images \
  -H "Authorization: Bearer fk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "a neon-lit cyberpunk portrait",
    "quality": "standard",
    "format": "png",
    "aspectRatio": "1:1"
  }'

Poll for the result

Poll GET /v1/api/images/{id} until status is succeeded, then download imageUrl. failed generations are refunded automatically.

curl https://fellowi.com/api/v1/api/images/{id} \
  -H "Authorization: Bearer fk_live_..."

Rate limits and cost

Each key has its own requests-per-minute limit (visible in the panel below). This is an abuse guard, not the real ceiling - your Fellowi Coins balance is what actually limits how many images you can generate.