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.
How it works
Section titled “How it works”- Register your desk and create an API key in the Desk Console.
- Send signals to
POST /v1/signalswith your key in theAuthorizationheader. - Repeats carrying the same
client_signal_idare idempotent (deduplicated).
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"}'Next steps
Section titled “Next steps”- Quickstart — send your first signal in a few minutes.
- Authentication — get and manage API keys.
- POST /v1/signals — the full request/response reference.
- Code examples — curl, JavaScript, and Python.
For LLMs
Section titled “For LLMs”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.