Endpoint Playground
Test Crawlora's Metacritic Movie 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/movie/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Metacritic movie slug |
{
"code": 200,
"msg": "OK",
"data": {
"id": 456,
"type": "movie",
"title": "Oppenheimer",
"slug": "oppenheimer",
"url": "https://www.metacritic.com/movie/oppenheimer/",
"tagline": "The World Forever Changes",
"premiere_year": 2023,
"release_date": "2023-07-21",
"rating": "R",
"metascore": {
"score": 90,
"max": 100,
"review_count": 69,
"sentiment": "Universal acclaim"
},
"user_score": {
"score": 8.4,
"max": 10,
"review_count": 2191,
"sentiment": "Universal acclaim"
},
"genres": [
{
"name": "Biography"
},
{
"name": "Drama"
}
],
"production": {
"companies": [
"Universal Pictures",
"Syncopy"
]
},
"imdb_id": "tt15398776"
}
}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 movie: Metascore (critic) and user score with sentiment and review counts, genres, cast/crew, rating, runtime, release date, IMDb id, and trailer. Credential-free public Metacritic data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 456,
"type": "movie",
"title": "Oppenheimer",
"slug": "oppenheimer",
"url": "https://www.metacritic.com/movie/oppenheimer/",
"tagline": "The World Forever Changes",
"premiere_year": 2023,
"release_date": "2023-07-21",
"rating": "R",
"metascore": {
"score": 90,
"max": 100,
"review_count": 69,
"sentiment": "Universal acclaim"
},
"user_score": {
"score": 8.4,
"max": 10,
"review_count": 2191,
"sentiment": "Universal acclaim"
},
"genres": [
{
"name": "Biography"
},
{
"name": "Drama"
}
],
"production": {
"companies": [
"Universal Pictures",
"Syncopy"
]
},
"imdb_id": "tt15398776"
}
}curl "https://api.crawlora.net/api/v1/metacritic/movie/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"