endpoint
GET

/api/audio/search?q=rain

Semantic + keyword search over generated public/own audio

auth: publicbase https://app.nz/v1
Request
curl -s "https://app.nz/api/audio/search?q=rain"

Models gateway

An OpenAI- and Anthropic-compatible API in front of 15+ providers. OpenAI clients use https://app.nz/v1; Claude Code and Anthropic Agent SDK use the root https://app.nz because they append /v1/messages. Use app/auto to select a model and thinking depth from the prompt, or pin a provider model. Stable long Anthropic prefixes are cached automatically while explicit cache controls are preserved.

Model routes (the model field)
app/autorouteDefault. Reads the prompt and picks the backend.
app/auto-coderouteBias toward strong coding models.
app/auto-fastrouteLowest latency for interactive use.
app/auto-cheaprouteBias toward lowest cost per token.
app/auto-reasoningrouteRoute reasoning depth automatically.
app/auto-visionrouteBias toward image-input models.
app/auto-imagerouteBias toward image-generation models.
routing_strategyparamprice by default; use config to preserve catalogue order or app/auto-fast for latency bias.
provider/modelpinPin a specific upstream model, e.g. anthropic/claude or openai/gpt.
Chat completion with auto routing
curl -s https://app.nz/v1/chat/completions \
  -H "Authorization: Bearer pk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "app/auto",
    "messages": [{"role": "user", "content": "Explain CRDTs in one paragraph."}],
    "reasoning_effort": "auto",
    "stream": false
  }'