Read an entry
get_titleFetch a Metacritic entry by slug and kind to retrieve its scores, description, and optional sections like awards, networks, and where to watch.
Instructions
Read one Metacritic entry by slug and kind, both from search_titles. Sections are opt-in because a full entry is large: 'basic' and 'scores' are the default and cover most questions. 'scores' fetches the critic and audience breakdowns, each with its own scale, so never compare the two numbers directly. Sections gate the payload: asking for 'scores' alone returns no description, and 'basic' alone returns no scores. 'networks' lists the broadcasters of a show; 'where_to_watch' costs an extra request and covers films and shows only. A long description paginates: when 'truncated' is true, call again with 'offset' set to 'next_offset'.
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'. | |
| offset | No | Where to resume the description. | |
| sections | No | Which parts to return. Each extra section beyond the default costs a request. | |
| max_chars | No | Character budget for the description. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| notes | Yes | ||
| title | Yes | ||
| awards | No | One tally per ceremony. Metacritic publishes no per-category detail. | |
| genres | Yes | ||
| offset | Yes | ||
| imdb_id | Yes | IMDb identifier, usable to cross-reference other sources. | |
| tagline | Yes | ||
| networks | No | Broadcasters, for shows. | |
| truncated | Yes | ||
| production | No | ||
| user_score | Yes | ||
| description | Yes | ||
| next_offset | Yes | Pass as 'offset' to read the rest. | |
| total_chars | Yes | Length of the full description. | |
| critic_score | Yes | ||
| returned_chars | Yes | ||
| where_to_watch | No | ||
| duration_minutes | Yes | Runtime in minutes for a film, or the length of a typical episode for a show. |