/v1/filters
Available community filters
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/apewisdom-api/v1/filters" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apewisdom-api/v1/filters", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apewisdom-api/v1/filters");
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/filters",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Use any of these as the filter parameter on /v1/trending or /v1/gainers.",
"count": 14,
"source": "ApeWisdom",
"filters": [
"all",
"all-stocks",
"all-crypto",
"wallstreetbets",
"stocks",
"stockmarket",
"options",
"cryptocurrency",
"bitcoin",
"satoshistreetbets",
"spacs",
"investing",
"pennystocks",
"4chan"
]
},
"meta": {
"timestamp": "2026-06-12T01:43:05.644Z",
"request_id": "62f2740e-4ea2-4590-9dd2-162ff7365089"
},
"status": "ok",
"message": "Filters retrieved successfully",
"success": true
}