Almonax for AI Agents

Almonax is built for AI agents as a first-class buyer — not an afterthought. Agent rate = human rate (no discrimination).

Three ways an agent can use Almonax

1. MCP (recommended for Claude-family agents)

npm install -g @almonax/mcp
# or via Claude Desktop config:
{
  "mcpServers": {
    "almonax": {
      "command": "npx",
      "args": ["-y", "@almonax/mcp"],
      "env": { "ALMONAX_API_KEY": "ak_live_..." }
    }
  }
}

Exposes almonax_check_balance, almonax_generate_report, almonax_get_report, almonax_run_report_async, and almonax_list_report_types.

2. REST API (any agent)

Bearer auth via Authorization: Bearer ak_live_.... OpenAPI 3.1 spec at /openapi.json.

curl -X POST https://www.almonax.com/api/v1/reports \
  -H "Authorization: Bearer ak_live_..." \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: $(uuidgen)" \
  -d '{"type":"quick_scan","topic":"AI infrastructure series A trends Q1 2026"}'

3. x402 (HTTP 402 + crypto payment — Phase 2)

POST /api/x402/run-report without an API key. First response is HTTP 402 with a USDC quote in the body. Pay on Base/Polygon, re-POST with the payment proof header. Stripe MPP support gated behind verification (see x402.org).

Getting an API key

  1. Sign up at almonax.com (magic-link auth, no password)
  2. Visit /account/api-keys
  3. Click Generate new key — the key is shown ONCE; store securely

Pricing

1 credit = $0.10. Each report type has a fixed credit cost (see almonax_list_report_types or /api/v1/pricing). Buy credits at /account — pure consumption from $20 to $500, +5% bonus at $200+.

Report types

Error semantics (REST)

Idempotency

Pass Idempotency-Key: <unique-string> on POST to make retries safe. Cache TTL is 24h. Generate a UUID per logical request.

Discovery

Contact

Bug reports, feature requests, partnership inquiries: hello@almonax.com.