XOOMAR
Developers

Free market data API, built to be used

Twenty-nine datasets, clean JSON and CSV, open CORS. No key needed to start. A free account raises your limit fourfold and shows you your own usage.

Tiers

TierAuthRate limitPrice
KeylessNone30 req/min/IPFree
Free account keyX-API-Key header120 req/min/keyFree, forever

No paid tier. If we ever add one, keyless and free keys stay exactly as they are.

Quickstart

Without a key (30 req/min)

curl "https://xoomar.com/api/markets/funding-rates"

With a key (120 req/min)

curl -H "X-API-Key: xm_live_..." "https://xoomar.com/api/markets/cot/gold"

Python

import requests

s = requests.Session()
s.headers["X-API-Key"] = "xm_live_..."  # optional, raises limit to 120/min

funding = s.get("https://xoomar.com/api/markets/funding-rates").json()["data"]
short = s.get("https://xoomar.com/api/markets/short-interest", params={"symbol": "GME"}).json()["data"]

# or: pip install xoomar
from xoomar import Xoomar
x = Xoomar()
x.cot("gold")

Client libraries

Python

PyPI·Source·Apache-2.0

pip install xoomar

JavaScript / TypeScript

npm·Source·Apache-2.0

npm install xoomar

AI agents (MCP server)

npm·Source·Apache-2.0

https://xoomar.com/mcp  ·  npx -y xoomar-mcp

Every method returns the data part of the response and keeps the envelope (updatedAt, source, attribution) on the client. No key needed to start; a free account key raises the limit to 120 requests a minute. The whole API is described in OpenAPI 3.1 (import it into Postman, Cursor or a GPT action) and in llms.txt.

Frequently Asked Questions

Is the API really free?
Yes. 30 requests a minute with zero setup, 120 with a free account key, for personal, academic and internal use. Commercial use of the data is by permission; the terms page says what that covers.
Why should I sign up if keyless works?
Four times the rate limit, per-key usage stats in your dashboard, and stable identity if you run multiple tools. Signup takes 30 seconds with Google, Microsoft, or email.
What's the SLA?
None promised, honestly. This is free infrastructure run by a small team, monitored around the clock. Check /stats for live numbers and /changelog for what changed.
Can I use the data commercially?
The data comes from public sources (SEC, CFTC, FINRA, BIS, exchanges) and our transformations are served for you to use. Attribution appreciated, not required.
How do I report a problem?
Email info@xoomar.com. Data quality reports get fixed fast; they make the product better for everyone.

Data on this page is provided for informational purposes only and is not financial advice. See our editorial policy.