Endpoint Playground
Test Crawlora's Metacritic Browse 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/browse?type=game&sort=score" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| type | string | Yes | game | Content type |
| genre | string | No | Genre filter (e.g. Action) | |
| sort | string | No | score | Sort order |
| page | integer | No | 1-based page number (default 1) | |
| per_page | integer | No | Results per page (default 24, max 100) |
{
"code": 200,
"msg": "OK",
"data": {
"type": "game",
"sort": "score",
"total": 500,
"page": 1,
"per_page": 24,
"items": [
{
"id": 1,
"type": "game",
"title": "The Legend of Zelda: Ocarina of Time (1998)",
"slug": "the-legend-of-zelda-ocarina-of-time-1998",
"url": "https://www.metacritic.com/game/the-legend-of-zelda-ocarina-of-time-1998/",
"premiere_year": 1998,
"rating": "E",
"metascore": {
"score": 99,
"max": 100,
"sentiment": "Universal acclaim"
},
"user_score": 9.1,
"genres": [
{
"name": "Adventure"
}
]
}
]
}
}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.
Browse Metacritic titles by content type, optionally filtered by genre and ordered by Metascore, popularity, or release date. Returns paginated title cards with Metascore and user score. Credential-free public Metacritic data.
{
"code": 200,
"msg": "OK",
"data": {
"type": "game",
"sort": "score",
"total": 500,
"page": 1,
"per_page": 24,
"items": [
{
"id": 1,
"type": "game",
"title": "The Legend of Zelda: Ocarina of Time (1998)",
"slug": "the-legend-of-zelda-ocarina-of-time-1998",
"url": "https://www.metacritic.com/game/the-legend-of-zelda-ocarina-of-time-1998/",
"premiere_year": 1998,
"rating": "E",
"metascore": {
"score": 99,
"max": 100,
"sentiment": "Universal acclaim"
},
"user_score": 9.1,
"genres": [
{
"name": "Adventure"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/metacritic/browse?type=<type>" \
-H "x-api-key: $CRAWLORA_API_KEY"