Zum Inhalt springen
GET /v1/filters

Available community filters

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/apewisdom-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}