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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "source": "TVmaze public API (live)",
        "service": "tvmaze-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/show": "A show's details and popularity (q=Breaking Bad or id=169).",
            "GET /v1/search": "Search the show catalogue (q=breaking, limit).",
            "GET /v1/schedule": "A country's broadcast schedule (country=US, date=YYYY-MM-DD, default today)."
        },
        "description": "Live TV-show data from TVmaze: look a show up by name or id for its genres, status, runtime, premiere/end dates, average user rating, popularity weight, network and country, official site and summary; search the catalogue; or pull a country's daily broadcast schedule (every episode airing with show, episode and airtime). Live, no key. Distinct from movie and anime APIs — this is TVmaze's television shows, ratings and schedule.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:02.978Z",
        "request_id": "a588e9be-5e43-46e8-aa4c-83a7eac580fc"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}