Zum Inhalt springen
GET /v1/featured

The daily featured feed

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/wikitrends-api/v1/featured" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wikitrends-api/v1/featured", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wikitrends-api/v1/featured");
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/wikitrends-api/v1/featured",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "date": "2026-06-10",
        "lang": "en",
        "source": "Wikimedia Featured Feed",
        "most_read": [
            {
                "url": "https://en.wikipedia.org/wiki/Victor_Wembanyama",
                "rank": 4,
                "title": "Victor Wembanyama",
                "views": 343601,
                "extract": "Victor Wembanyama, nicknamed \"Wemby\" and \"the Alien\", is a French professional basketball player for the San Antonio Spurs of the National Basketball Association (NBA). He was selected first overall by the Spurs in the 2023 NBA draft and is considere",
                "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Victor_Wembanyama_San_Antonio_Spurs_2024.jpg/330px-Victor_Wembanyama_San_Antonio_Spurs_2024.jpg",
                "description": "French basketball player (born 2004)"
            },
            {
                "url": "https://en.wikipedia.org/wiki/2026_FIFA_World_Cup",
                "rank": 5,
                "title": "2026 FIFA World Cup",
                "views": 280506,
                "extract": "The 2026 FIFA World Cup is the current and 23rd edition of the FIFA World Cup, the quadrennial international men's soccer championship contested by the national teams of the member associations of FIFA. The tournament is currently taking place from J",
                "thumbnail": "https://upload.wikimedia.org/wikipedia/en/thumb/1/17/2026_FIFA_World_Cup_emblem.svg/330px-2026_FIFA_World_Cup_emblem.svg.png",
                "description": "International men's soccer tournament in North America"
            },
            {
                "url": "https://en.wikipedia.org/wiki/Obsession_(2025_film)",
                "rank": 6,
                "title": "Obsession (2025 film)",
                "views": 251917,
                "extract": "Obsession is a 2025 American supernatural psychological horror film written, directed, and edited by Curry Barker. The film follows Bear, a music store employee who buys a supernatural toy that grants his wish for his friend Nikki to fall in love wit",
                "thumbnail": "https://upload.wikimedia.org/wikipedia/en/0/05/Obsession_theatrical_poster.jpeg",
                "description": "Film by Curry Barker"
            },
            {
                "url": "https://en.wikipedia.org/wiki/2026_Peruvian_general_election",
                "rank": 7,
                "title": "2026 Peruvian general election",
                "views": 224252,
                "extract": "General elections were held in Peru from 12 to 13 April 2026 to elect the president, vice presidents, and the Congress of the Republic of Peru. As no presidential candidate achieved a majority of votes in the first round, a runoff election was held o",
                "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/260406-MITIN-KEIKO-PIURA-064_%28cropped%29.jpg/330px-260406-MITIN-KEIKO-PIURA-064_%28cropped%29.jpg",
                "des
…