Ir al contenido
GET /v1/featured

The daily featured feed

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/wikitrends-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
…