Endpoint Playground
Test Crawlora's Metacritic Game Critic 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/game/<slug>/critic-reviews?sort=date" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Metacritic game 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": "game",
"slug": "elden-ring",
"total": 93,
"page": 1,
"per_page": 20,
"sort": "date",
"reviews": [
{
"publication": "Areajugones",
"publication_slug": "areajugones",
"score": 100,
"quote": "A masterpiece.",
"date": "2022-02-23",
"platform": "PlayStation 5",
"url": "https://areajugones.sport.es/..."
}
]
}
}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 professional/publication reviews for a game: publication, score, quote, author, platform, and source URL. Credential-free public Metacritic data.
{
"code": 200,
"msg": "OK",
"data": {
"type": "game",
"slug": "elden-ring",
"total": 93,
"page": 1,
"per_page": 20,
"sort": "date",
"reviews": [
{
"publication": "Areajugones",
"publication_slug": "areajugones",
"score": 100,
"quote": "A masterpiece.",
"date": "2022-02-23",
"platform": "PlayStation 5",
"url": "https://areajugones.sport.es/..."
}
]
}
}curl "https://api.crawlora.net/api/v1/metacritic/game/<slug>/critic-reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"