Stock Sentiment API
Stock Sentiment API — free-tier JSON endpoint
Stock Sentiment API offers a free API tier. We verified JSON on a sample GET (Machine Learning). 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://api.adanos.org/
{
"name": "Adanos Market Sentiment API",
"version": "1.46.0",
"platforms": {
"sentiment": "/sentiment/v1",
"news-stocks": "/news/stocks/v1",
"reddit-stocks": "/reddit/stocks/v1",
"reddit-crypto": "/reddit/crypto/v1",
"x-stocks": "/x/stocks/v1",
"polymarket-stocks": "/polymarket/stocks/v1"
},
"docs": {
"api_reference": "/docs",
"openapi_json": "/openapi.json",
"openapi_yaml": "/openapi.yaml",
"changelog": "/changelog"
},
"health": {
"news-stocks": "/news/stocks/v1/health",
"reddit-stocks": "/reddit/stocks/v1/health",
"reddit-crypto": "/reddit/crypto/v1/health",
"x-stocks": "/x/stocks/v1/health",
"polymarket-stocks": "/polymarket/stocks/v1/health"
},
"for_agents": {
"llms_txt": "https://api.adanos.org/llms.txt",
"openapi_json": "https://api.adanos.org/openapi.json"
},
"downloads": {
"releases": "https://github.com/adanos-software/adanos-cli/releases",
"pypi": "https://pypi.org/project/adanos-cli/"
}
}curl "https://api.adanos.org/"const res = await fetch("https://api.adanos.org/");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.adanos.org/")
print(res.json())/PROBEDStock Sentiment API — free-tier JSON endpoint
/?limit=5Paginated variant with limit parameter.
/reddit/stocks/v1/trendingTrending stocks
/reddit/stocks/v1/trending/sectorsTrending sectors
/reddit/stocks/v1/trending/countriesTrending countries
/reddit/stocks/v1/stock/{ticker}Stock Sentiment
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.
Stock Sentiment API: common questions
Is Stock Sentiment API free to use?
Yes — Stock Sentiment API is a free science & space 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 Stock Sentiment API need an API key?
Yes — Stock Sentiment API needs a free API key, which you pass on each request. Rate limits: Unpublished.
Can I call Stock Sentiment API from the browser?
Yes — Stock Sentiment API returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Stock Sentiment API up right now?
Stock Sentiment API 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.