Skip to content

Traderz Signals API

The Traderz Signals API ingests trading signals from desks over HTTP. A desk authenticates with an API key and POSTs signals to a single endpoint; each signal is attributed to the desk and stored.

  1. Register your desk and create an API key in the Desk Console.
  2. Send signals to POST /v1/signals with your key in the Authorization header.
  3. Repeats carrying the same client_signal_id are idempotent (deduplicated).
Terminal window
curl -X POST https://api.traderz.dev/v1/signals \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{"source":"binance","type":"crypto","symbol":"ETH/USDT","side":"open","direction":"long"}'

This site publishes machine-readable indexes for AI tools:

  • /llms.txt — a concise index of the documentation.
  • /llms-full.txt — the full documentation as a single Markdown file.

The raw OpenAPI 3.1 spec is also available from the API at /openapi.yaml.