Μετάβαση στο περιεχόμενο
GET /v1/meta

Spec

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/itunes-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "service": "itunes-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/album": "Album and its tracks by id.",
            "GET /v1/artist": "Artist by id.",
            "GET /v1/lookup": "Lookup any item by id.",
            "GET /v1/search": "Search any media (term, media, entity).",
            "GET /v1/artist/songs": "An artist's songs.",
            "GET /v1/search/music": "Search songs.",
            "GET /v1/artist/albums": "An artist's albums.",
            "GET /v1/search/albums": "Search albums.",
            "GET /v1/search/ebooks": "Search ebooks.",
            "GET /v1/search/podcasts": "Search podcasts.",
            "GET /v1/podcast/episodes": "A podcast and its episodes.",
            "GET /v1/search/audiobooks": "Search audiobooks."
        },
        "description": "iTunes / Apple Media: music, podcasts, movies, ebooks, audiobooks; artist, album and podcast lookups — real live data."
    },
    "meta": {
        "timestamp": "2026-06-07T16:48:43.238Z",
        "request_id": "77232021-04ae-47ca-8411-b5c66eccb805"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}