Ir al contenido
GET /v1/meta

Service metadata

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/applecharts-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "sample": {
            "top_us_free_app": "FOX One: Live News, Sports, TV"
        },
        "source": "Apple public Marketing Tools RSS (rss.marketingtools.apple.com), keyless",
        "service": "applecharts-api",
        "endpoints": {
            "GET /v1/apps": "Top iOS apps chart (country, feed=top-free|top-paid, limit).",
            "GET /v1/meta": "This document.",
            "GET /v1/music": "Most-played songs chart (country, limit).",
            "GET /v1/podcasts": "Top podcasts chart (country, limit)."
        },
        "description": "Live Apple App Store, Music and Podcast charts by country with no key: the top free/paid iOS apps, the most-played songs and the top podcasts, ranked, for any Apple storefront. Each entry with rank, title, artist/developer, artwork, genres and store link. The app-store / charts / trending-media layer for ASO, market research and media-monitoring. Distinct from the iTunes catalogue-lookup and App-Store-search readers. Live, short cache only.",
        "storefronts": [
            "us",
            "gb",
            "de",
            "fr",
            "es",
            "it",
            "nl",
            "ca",
            "au",
            "br",
            "mx",
            "jp",
            "kr",
            "in",
            "ru",
            "tr",
            "se",
            "pl",
            "cn",
            "ae"
        ],
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:38.290Z",
        "request_id": "3fd00881-798b-48eb-8232-f2b227d14249"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}