Endpoint Playground
Test Crawlora's Metacritic Game 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>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Metacritic game slug |
{
"code": 200,
"msg": "OK",
"data": {
"id": 123,
"type": "game",
"title": "Elden Ring",
"slug": "elden-ring",
"url": "https://www.metacritic.com/game/elden-ring/",
"premiere_year": 2022,
"release_date": "2022-02-25",
"rating": "M",
"metascore": {
"score": 96,
"max": 100,
"review_count": 93,
"positive_count": 86,
"sentiment": "Universal acclaim",
"url": "https://www.metacritic.com/game/elden-ring/critic-reviews/"
},
"user_score": {
"score": 8.4,
"max": 10,
"review_count": 23997,
"sentiment": "Generally favorable"
},
"genres": [
{
"name": "Action RPG"
}
],
"production": {
"companies": [
"FromSoftware",
"Bandai Namco Games"
]
},
"platforms": [
{
"name": "PlayStation 5",
"is_lead": true,
"metascore": {
"score": 96,
"max": 100
}
}
]
}
}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 game: Metascore (critic) and user score with sentiment and review counts, genres, per-platform scores, developer/publisher, rating, release date, and trailer. Credential-free public Metacritic data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 123,
"type": "game",
"title": "Elden Ring",
"slug": "elden-ring",
"url": "https://www.metacritic.com/game/elden-ring/",
"premiere_year": 2022,
"release_date": "2022-02-25",
"rating": "M",
"metascore": {
"score": 96,
"max": 100,
"review_count": 93,
"positive_count": 86,
"sentiment": "Universal acclaim",
"url": "https://www.metacritic.com/game/elden-ring/critic-reviews/"
},
"user_score": {
"score": 8.4,
"max": 10,
"review_count": 23997,
"sentiment": "Generally favorable"
},
"genres": [
{
"name": "Action RPG"
}
],
"production": {
"companies": [
"FromSoftware",
"Bandai Namco Games"
]
},
"platforms": [
{
"name": "PlayStation 5",
"is_lead": true,
"metascore": {
"score": 96,
"max": 100
}
}
]
}
}curl "https://api.crawlora.net/api/v1/metacritic/game/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"