Read reviews
get_reviewsFetch critic or user reviews for a Metacritic entry. Filter by sentiment (positive, neutral, negative) to read praised or panned opinions, with publication details and links.
Instructions
Read individual reviews of a Metacritic entry, from critics or from users. Get the slug and kind from search_titles first. Filter with 'sentiment' to read only what praised or panned it, which Metacritic groups itself. Metacritic returns a fixed sample rather than the full list, so 'total_available' is usually far larger than what comes back, and there is no way to page past the sample. Critic reviews carry the publication and a link to the original article: quote them with both. Critic scores run to 100 and user scores to 10, so do not average the two together.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | Which catalogue the entry belongs to. Pass it back with the slug. | |
| slug | Yes | Identifier from search_titles, such as 'the-matrix'. | |
| limit | No | How many reviews to return from the sample Metacritic publishes. | |
| offset | No | How many of the sampled reviews to skip. The sample itself cannot be paged past. | |
| source | No | 'critic' is the professional press, 'user' is the audience. | critic |
| sentiment | No | Which slice to read. Metacritic groups reviews this way itself. | all |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | ||
| slug | Yes | ||
| notes | Yes | ||
| offset | Yes | ||
| source | Yes | ||
| reviews | Yes | ||
| sentiment | Yes | ||
| source_url | Yes | Metacritic page these reviews belong to. Cite it when an article link is missing. | |
| next_offset | Yes | Pass as 'offset' for the next page. | |
| total_available | Yes | How many reviews Metacritic counts in total. Usually far more than it serves here. |