World Trading Data
World Trading Data — free-tier JSON endpoint
World Trading Data offers a free API tier. We verified JSON on a sample GET (Finance). Check provider docs for key requirements and limits.
GET https://www.worldtradingdata.com/api
{
"0": "#################################################################################################################################",
"1": "#",
"2": "# IMPORTANT - PLEASE UPDATE YOUR API ENDPOINT",
"3": "#",
"4": "#",
"5": "# This API endpoint is deprecated and now has been shut down. ",
"6": "# To keep using our free stock market API, please update your integration to use the new marketstack API endpoint.#",
"7": "# You will find more information by visiting https://marketstack.com."
}curl "https://www.worldtradingdata.com/api"const res = await fetch("https://www.worldtradingdata.com/api");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.worldtradingdata.com/api")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/apiPROBEDWorld Trading Data — free-tier JSON endpoint
/api?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
World Trading Data: common questions
Is World Trading Data free to use?
Yes — World Trading Data is a free finance API. Free tier: Free tier — API key may be required for production. Whether the free tier allows commercial use is unclear — check the provider docs.
Does World Trading Data need an API key?
Yes — World Trading Data needs a free API key, which you pass on each request. Rate limits: Unpublished.
Can I call World Trading Data from the browser?
Not directly — World Trading Data doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is World Trading Data up right now?
As of our last scheduled check, World Trading Data is healthy with 99.02% uptime over 90 days and a 423 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.