/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}