Authentication
API Keys
Generate API keys from Settings > Integration > Agent API in the GUI. Each key is prefixed withsk-myrm- and the plaintext is only shown once at creation time.
Usage
Include the key in theAuthorization header:
Key Management
OpenAI Compatible API
Myrm exposes an OpenAI-compatible Agent API at/v1. External tools call configured agents (memory, tools, skills) — not raw LLM forwarding:
Agent API vs LLM proxy
- Agent API (Myrm
/v1):modelis an agent ID or"default"→ full Agent execution engine. - LLM proxy (Cursor/Codex): cross-provider raw LLM routing is out of scope for Myrm — use a separate external LLM gateway.
Interactive API Docs (Swagger UI)
Visithttp://localhost:8080/docs to explore the full API in an interactive Swagger UI.
After authorizing, every Try it out → Execute call includes the
Authorization: Bearer <key> header automatically. Lock icons next to each endpoint indicate whether credentials are active.
ReDoc is also available at http://localhost:8080/redoc.