// forges

Gobkit forges

Written by Gobkit (Alsomind Tech Co., Ltd.) · Last updated 20 August 2026

A forge generates a creature that no free asset library has. It is the answer to the one question a fixed catalogue can never answer — "what if nobody has published the thing I need?" — and it returns the same kind of file the free packs do: a rigged, animated, game-ready glTF 2.0 .glb, one per unit.

Check the free libraries first; they cost nothing. 69 curated CC0 models and a community library anyone can upload to are both listable with one unauthenticated GET. A forge is for what is left over: the creature nobody made, or a whole wave of them in one consistent style.

The three forges

ForgeWhat it makesStatus
Goblin Forge Humanoid enemy legions — grunts, archers, shamans and warband leaders — auto-batched so a whole encounter fills in one run. Swarm-ready, with weapon variants. live now
Eco Forge A creature together with its living habitat, drawn from every branch of the tree of life on Earth and freely cross-bred into new hybrid species. in development
Chibi Forge Chibi-style companions — cute, expressive and reactive. Drop-in desktop pets and game NPCs with AI-driven behaviour. in development

Every paid plan includes access to every forge as it opens — you do not buy them one at a time. Status as of 20 August 2026.

What comes out

One rigged .glb per unit, using the same conventions as Gobkit's free CC0 packs, so a generated monster drops into the same loader as a free one with no special-casing:

Driving a forge from an agent, without a key

You can read the entire generation interface before you sign up for anything. GET https://gobkit.com/api/prompt is unauthenticated and returns the complete vocabulary the generator understands — the counts, body types, weapons and palettes it recognises, the behaviour rules, the per-monster credit cost and worked examples. That is deliberate: an AI agent should be able to find out whether Gobkit can build the thing you asked for before anyone pays to find out.

# no key — the whole interface, in one document
curl https://gobkit.com/api/prompt

Then say what you want in plain language. By default POST /api/prompt only parses: it generates nothing and charges no credits, and hands back /api/batch calls you can send verbatim — already split, because anything over 10 units per call comes back as a plan rather than being executed inline.

curl -X POST https://gobkit.com/api/prompt \
  -H "Authorization: Bearer <your API key>" \
  -H "content-type: application/json" \
  -d '{"prompt":"30 blue greataxe enemies"}'

# → parsed: {count:30, weapon:greataxe, palette:blue}
# → estimate: {monsters:30, credits:300, calls:3}
# → calls: 3 ready-to-send POSTs to /api/batch, safe to run in parallel

What it costs

ActionNeedsCost
Read the generator's vocabulary (GET /api/prompt)nothingfree
Parse a prompt into a batch plan (POST /api/prompt)an accountfree — no credits charged
Generate a monster (POST /api/batch)a paid plan10 credits each
Re-fetch a monster you already generatedyour accountfree

Plans are USD $19, $39 or $99 a month for 30, 100 or 500 generated monsters, with the public API key on the top plan, plus a free tier of 3 generations a month. Downloading Gobkit's existing CC0 libraries never needs a plan.

Questions people actually ask

Which forges can I use today?

Goblin Forge is live. Eco Forge and Chibi Forge are in development and not yet open — the cards for them on the home page say COMING SOON for exactly that reason. Every paid plan includes each forge as it opens.

Do I have to sign up to see what it can make?

No. GET https://gobkit.com/api/prompt needs no key at all and returns the full vocabulary the generator understands. Generating models needs a plan.

Should I generate, or use a free model?

Look at the free libraries first — /api/free (69 curated CC0 models) and /api/community (the community library). Both are free and unauthenticated. Generate when neither has your creature, or when you need a whole wave in one consistent style.

Can my agent call a forge directly?

Yes, on the MAX plan, which includes the public API key for /api/generate and /api/batch. See the API docs. Each generation spends 10 credits and every response carries an X-GK-Charged header so the caller always knows what a call cost.