A
docs.anm
tutorials + reference
📚

Build on the Animica Internet

Tutorials for using the .anm web and deploying your own site, plus the full developer reference: the free /v1 AI API, the marketplace + ANS APIs, the CLI, and the post-quantum wallet.

Deploy your own .anm site in 3 steps

Register a name

Claim a name with an ANM wallet — no registrar. It is yours until it expires.

curl -X POST https://animica.dev/api/mkt/v1/names \
  -H "authorization: Bearer $ANM_KEY" \
  -d '{"name":"you","years":1}'
Publish native HTML

Upload a self-contained page; the network stores it by content ID and serves it hash-verified.

curl -X POST https://animica.dev/api/mkt/v1/names/you/publish \
  -H "authorization: Bearer $ANM_KEY" \
  --data-binary @index.html
Visit it

Anyone can open you.anm through the gateway, or in the Animica browser.

https://animica.dev/anm/you

Explore