Hanamy / Platform / Models

Every model,
in one register.

What is reachable through the endpoint right now, what it costs, and how much context it will hold. Model names here are the strings you pass in "model", and they work as written.

ModelLab Context In / 1M Out / 1M Status

One endpoint,
every name above.

Change the base URL and the key. The request body, the streaming format and the tool calls stay exactly as your SDK already writes them.

Read the quickstart
quickstart.sh
# one endpoint, every model in the register
curl https://api.hanamy.dev/v1/chat/completions \
  -H "Authorization: Bearer $MW_CLIENT_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-opus-5",
    "messages": [{"role":"user","content":"say hi"}],
    "stream": true
  }'