Web API
You can call every Atlas tool with a normal web request. This is the way to use Atlas from your own code or a script.
Where to send it
https://atlasmcp.finmanagerai.comHow to call any tool
Send a POST to /api/v1/tools/<tool-name>. Put the tool's settings in the
body as JSON. Add your key in the header.
export ATLAS_BASE_URL="https://atlasmcp.finmanagerai.com"
export ATLAS_KEY="<your key>"
curl -sS -X POST "$ATLAS_BASE_URL/api/v1/tools/get_stock_quote" \
-H "Authorization: Bearer $ATLAS_KEY" \
-H "Content-Type: application/json" \
-d '{"symbol":"AAPL"}'What comes back
You get JSON back. Data tools give you the fields for that tool plus the time.
Chart tools give you an images list, and each image has its picture data.
If something goes wrong you get an error message and a non-200 code.
Get the full list in code
curl -sS -H "Authorization: Bearer $ATLAS_KEY" "$ATLAS_BASE_URL/api/v1/tools"Or open /atlas-tools.json.
Plans and limits
- Free tools work on any plan. They are limited to 60 calls a minute.
- Premium tools need a paid plan and use one of your monthly requests each.
- See Plans and how you get charged for the full picture, including how a live trade that Atlas later changes uses one more request.
Your key is a secret. Anyone who has it can use tools on your account and, for trading tools, place real orders with your broker. Never put it in a web page or share it. You can make a new one anytime from the dashboard.
There are 92 tools. The list below shows the address for each one, whether it is free, and what it does.