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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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?
World Trading Data is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.