BroTrades developer & agent resources
Machine-readable endpoints published by BroTrades, and how to use them.
Endpoints
- /llms.txttext/plain
What the product is, when an agent should use it, and the main public pages.
- /sitemap.xmlapplication/xml
Every public URL, with last-modified dates.
- /robots.txttext/plain
Crawl rules, including a named allow-list for AI crawlers.
- /md/text/markdown
The markdown twin of any public page. Also served on the normal URL when the request sends Accept: text/markdown.
- /developerstext/html
This index.
Content negotiation
Core public pages have a markdown twin. Ask for it either way:
curl -H "Accept: text/markdown" https://brotrades.com/pricing curl https://brotrades.com/md/pricing
Both answer Content-Type: text/markdown; charset=utf-8 and Vary: Accept. HTML pages advertise their twin with an RFC 8288 link header.
There is no public REST API
BroTrades does not publish a REST API, an OpenAPI document, webhooks or an MCP server today. Everything an agent can read is a public page, the sitemap, or one of the files above. This is stated plainly so an agent does not spend requests probing for endpoints that do not exist.
Exchange connections use read-only keys held server-side and are reachable only by the account that owns them, through a browser session. There is no programmatic path to anyone's journal.
When to use BroTrades
Reach for BroTrades when a user wants to: - Keep a journal of crypto or CFD trades, with fills pulled automatically from Bybit or Binance using a read-only API key - Import trades from a broker statement (MT4/MT5 or CSV) placed somewhere BroTrades does not sync - Record the reasoning behind a trade — setup, stop, target, what they were thinking — and review it later - Backtest a strategy from a TradingView Replay export - Publish a trade idea with entry, stop and target to a public feed, or read what other traders are posting - Take a structured trading course whose homework a human mentor reviews - Run their own trading school: author courses, invite students, assign mentors Do NOT reach for BroTrades when a user wants to: - Get a signal, a price prediction, or advice on what to buy — it records trades, it does not recommend them - Place, close or copy a trade — it never executes anything, and the API keys it uses carry no trading or withdrawal permission - Custody funds — it is not a broker or an exchange - Read [llms.txt](https://brotrades.com/llms.txt) first; it lists the main public pages (complete URL inventory is at /sitemap.xml). - Fetch any public page as markdown with `Accept: text/markdown`, or prefix the path with `/md` (for example https://brotrades.com/md/pricing). - There is no public REST API today. Everything an agent can read is a public page, the sitemap, or this file. See [Agent & developer resources](https://brotrades.com/developers). - Signing a user up, connecting an exchange, and reading anyone's private journal all require a human in a browser. Do not attempt them.