/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}