Endpoint Playground
Test Crawlora's Metacritic TV User Reviews 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>/user-reviews?sort=date" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Metacritic TV show slug | |
| page | integer | No | 1-based page number (default 1) | |
| per_page | integer | No | Results per page (default 20, max 50) | |
| sort | string | No | date | Sort order |
{
"code": 200,
"msg": "OK",
"data": {
"type": "tv",
"slug": "breaking-bad",
"total": 573,
"page": 1,
"per_page": 20,
"sort": "date",
"reviews": [
{
"id": "6b0405c7",
"author": "exogan",
"score": 9,
"quote": "Instant classic.",
"date": "2026-03-22"
}
]
}
}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 paginated user reviews for a TV show: author, score (0-10), quote, date, helpfulness, and spoiler flag. Credential-free public Metacritic data.
{
"code": 200,
"msg": "OK",
"data": {
"type": "tv",
"slug": "breaking-bad",
"total": 573,
"page": 1,
"per_page": 20,
"sort": "date",
"reviews": [
{
"id": "6b0405c7",
"author": "exogan",
"score": 9,
"quote": "Instant classic.",
"date": "2026-03-22"
}
]
}
}curl "https://api.crawlora.net/api/v1/metacritic/tv/<slug>/user-reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"