For the complete documentation index, see llms.txt. This page is also available as Markdown.

Market Maker

Proxy endpoints for the market-maker bot service.

Authentication

Requires an API key with the MARKET_MAKER product scope (enforced on every route in this namespace). See Authentication.

Base Path

/v1/market-maker/*

How It Works

Every request under /v1/market-maker/* is proxied to the internal market-maker service. The /v1/market-maker prefix is stripped and the remainder is forwarded as /api/*, preserving the HTTP method, query string, and body.

Example:

# This request:
curl https://api.tokenbot.com/v1/market-maker/status \
  -H "X-API-Key: tb_live_your_key"

# Is proxied to the market-maker service as:
#   GET /api/status

Notes

  • The market-maker engine runs on a 5-minute Lambda cycle.

  • For local operator control (status, spreads, inventory, pause/resume, emergency-stop), use the embedded tokenbot-mm CLI shipped with the market-maker bot rather than calling these proxy endpoints directly.

Last updated

Was this helpful?