/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/apewisdom-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apewisdom-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apewisdom-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/apewisdom-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "filter selects the community (all-stocks default, all-crypto, wallstreetbets, cryptocurrency…). mention_change is mentions minus mentions-24h-ago; rank_change positive means the ticker is climbing.",
"source": "ApeWisdom (apewisdom.io/api/v1.0, live, ~hourly)",
"service": "apewisdom-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/filters": "Available community filters.",
"GET /v1/gainers": "Tickers whose mentions surged most vs 24h ago (filter=all-stocks).",
"GET /v1/trending": "Tickers ranked by current Reddit mentions (filter=all-stocks, limit=50)."
},
"description": "Live social-media buzz for stocks and crypto — how often each ticker is mentioned across Reddit's trading communities (r/wallstreetbets, r/stocks, r/CryptoCurrency and more), from ApeWisdom. The retail social-sentiment cut: not a price, but the attention a ticker gets and whether it is rising or fading. The trending endpoint ranks tickers by mention count for a community filter (name, mentions, mentions 24h ago, rank, rank change, upvotes); the gainers endpoint surfaces tickers whose mentions surged most vs yesterday; the filters endpoint lists the communities. Live, no key, nothing stored. The social-mention / meme-stock cut — distinct from the trader-post-stream (StockTwits), price and market-data APIs.",
"tracked_stocks": 1197,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:43:05.712Z",
"request_id": "830d5569-d618-4217-a2d8-61bc6961bf07"
},
"status": "ok",
"message": "Meta",
"success": true
}