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.
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.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
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?
As of our last scheduled check, Stock Sentiment API is healthy with 100% uptime over 90 days and a 531 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.