Endpoint Playground
Test Crawlora's Metacritic TV Show API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/metacritic/tv/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Metacritic TV show slug |
{
"code": 200,
"msg": "OK",
"data": {
"id": 789,
"type": "tv",
"title": "Breaking Bad",
"slug": "breaking-bad",
"url": "https://www.metacritic.com/tv/breaking-bad/",
"premiere_year": 2008,
"rating": "TV-MA",
"season_count": 5,
"metascore": {
"score": 87,
"max": 100,
"sentiment": "Universal acclaim"
},
"user_score": {
"score": 9.5,
"max": 10,
"sentiment": "Universal acclaim"
},
"genres": [
{
"name": "Drama"
}
],
"networks": [
"AMC"
],
"imdb_id": "tt0903747"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a normalized Metacritic TV show: Metascore (critic) and user score with sentiment and review counts, genres, networks, season count, rating, release date, IMDb id, and trailer. Credential-free public Metacritic data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 789,
"type": "tv",
"title": "Breaking Bad",
"slug": "breaking-bad",
"url": "https://www.metacritic.com/tv/breaking-bad/",
"premiere_year": 2008,
"rating": "TV-MA",
"season_count": 5,
"metascore": {
"score": 87,
"max": 100,
"sentiment": "Universal acclaim"
},
"user_score": {
"score": 9.5,
"max": 10,
"sentiment": "Universal acclaim"
},
"genres": [
{
"name": "Drama"
}
],
"networks": [
"AMC"
],
"imdb_id": "tt0903747"
}
}curl "https://api.crawlora.net/api/v1/metacritic/tv/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"