# Metacritic — Zapi reference > Skor kritikus & pengguna (Metascore) untuk film, serial TV, dan game. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/movie/metacritic - Endpoint catalog: https://zpi.web.id/category/movie - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Metacritic **Category:** movie · **Slug:** `metacritic` **Detail page:** https://zpi.web.id/api/movie/metacritic Skor kritikus & pengguna (Metascore) untuk film, serial TV, dan game. **Tags:** movie, tv, game, scores, reviews ### Game Metacritic Game Detail — info lengkap satu game by slug. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:metacritic/game/:slug` - **Cache TTL:** 1800s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `slug` | string | path | yes | Slug game di Metacritic (mis. `elden-ring`). Boleh tempel URL Metacritic penuh — slug di-ekstrak otomatis | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:metacritic/game/:slug" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:metacritic/game/:slug", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:metacritic/game/:slug", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 1300501979, "url": "https://www.metacritic.com/game/elden-ring/", "slug": "elden-ring", "type": "game", "year": 2022, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-824956-52.jpg", "title": "Elden Ring", "genres": [ "Action RPG" ], "rating": "M", "metascore": 96, "platforms": [ { "name": "Xbox One" }, { "name": "PC", "metascore": 94 }, { "name": "PlayStation 4" }, { "name": "Xbox Series X", "metascore": 96 }, { "name": "PlayStation 5", "metascore": 96 } ], "userScore": 8.4, "developers": [ "From Software" ], "publishers": [ "Bandai Namco Games", "From Software" ], "description": "A New World Created By Hidetaka Miyazaki And George R. R. Martin\n\nELDEN RING, developed by FromSoftware, Inc. and BANDAI NAMCO Entertainment Inc., is a fantasy action-RPG adventure set within a world created by Hidetaka Miyazaki creator of the influential DARK SOULS video game series; and George R.R. Martin author of The New York Times best-selling fantasy series, A Song of Ice and Fire. Danger and discovery lurk around every corner in FromSoftware's largest game to-date. \n\nHidetaka Miyazaki, President and Game Director of FromSoftware Inc. Known for directing critically-acclaimed games in beloved franchises including Armored Core, Dark Souls, and Sekiro: Shadows Die Twice. \n\nGeorge R.R. Martin is the #1 New York Times bestselling author of many novels, including the acclaimed series A Song of Ice and Fire - A Game of Thrones, A Clash of Kings, A Storm of Swords, A Feast For Crows, and A Dance with Dragons. As a writer-producer, he has worked on The Twilight Zone, Beauty and the Beast, and various feature films and pilots that were never made.", "releaseDate": "2022-02-25", "userReviewCount": 23771, "criticReviewCount": 93, "metascoreSentiment": "Universal acclaim", "userScoreSentiment": "Generally favorable" } ``` --- ### Movie Metacritic Movie Detail — info lengkap satu film by slug. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:metacritic/movie/:slug` - **Cache TTL:** 1800s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `slug` | string | path | yes | Slug film di Metacritic (mis. `parasite`). Boleh tempel URL Metacritic penuh — slug di-ekstrak otomatis | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:metacritic/movie/:slug" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:metacritic/movie/:slug", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:metacritic/movie/:slug", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 2000550625, "url": "https://www.metacritic.com/movie/parasite/", "slug": "parasite", "type": "movie", "year": 2019, "image": "https://www.metacritic.com/a/img/catalog/provider/2/13/2-3b554a3b922cc5f5572524abf688b727.jpg", "title": "Parasite", "genres": [ "Drama", "Thriller" ], "imdbId": "tt6751668", "rating": "R", "tagline": "Misplaced familyhood (Australia/New Zealand/Singapore)", "metascore": 97, "userScore": 8.8, "description": "Meet the Park Family: the picture of aspirational wealth. And the Kim Family, rich in street smarts but not much else. Be it chance or fate, these two houses are brought together and the Kims sense a golden opportunity. Masterminded by college-aged Ki-woo, the Kim children expediently install themselves as tutor and art therapist, to the Parks. Soon, a symbiotic relationship forms between the two families. The Kims provide “indispensable” luxury services while the Parks obliviously bankroll their entire household. When a parasitic interloper threatens the Kims’ newfound comfort, a savage, underhanded battle for dominance breaks out, threatening to destroy the fragile ecosystem between the Kims and the Parks. [Neon]", "releaseDate": "2019-10-11", "runtimeMinutes": 132, "userReviewCount": 2349, "criticReviewCount": 56, "metascoreSentiment": "Universal acclaim", "userScoreSentiment": "Universal acclaim", "productionCompanies": [ "Barunson E&A" ] } ``` --- ### Search Metacritic Search — cari film, serial TV, game, atau orang lintas-tipe. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:metacritic/search` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Kata kunci pencarian: judul film/serial/game, atau nama orang | | `type` | enum(all|movie|tv|game|person) | query | no | Filter jenis hasil: all=semua, movie=film, tv=serial, game=game, person=orang. Default all | | `page` | number | query | no | Nomor halaman (1, 2, 3, ...). Default 1 | | `count` | number | query | no | Jumlah hasil per halaman. Default 20, max 50 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:metacritic/search?q=parasite&type=all&page=1&count=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:metacritic/search?q=parasite&type=all&page=1&count=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:metacritic/search?q=parasite&type=all&page=1&count=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "type": "all", "count": 20, "query": "parasite", "total": 35, "hasMore": true, "results": [ { "id": 2000550625, "url": "https://www.metacritic.com/movie/parasite/", "slug": "parasite", "type": "movie", "year": 2019, "image": "https://www.metacritic.com/a/img/catalog/provider/2/2/2-8a8e64076621c48ff9f12f5bf72085e1.jpg", "title": "Parasite", "genres": [ "Drama", "Thriller" ], "rating": "R", "duration": 132, "metascore": 97, "description": "Meet the Park Family: the picture of aspirational wealth. And the Kim Family, rich in street smarts but not much else. Be it chance or fate, these two houses are brought together and the Kims sense a golden opportunity. Masterminded by college-aged Ki-woo, the Kim children expediently install themselves as tutor and art therapist, to the Parks. Soon, a symbiotic relationship forms between the two families. The Kims provide “indispensable” luxury services while the Parks obliviously bankroll their entire household. When a parasitic interloper threatens the Kims’ newfound comfort, a savage, underhanded battle for dominance breaks out, threatening to destroy the fragile ecosystem between the Kims and the Parks. [Neon]", "releaseDate": "2019-10-11", "seasonCount": 0 }, { "id": 1300660487, "url": "https://www.metacritic.com/game/parasite/", "slug": "parasite", "type": "game", "year": 2097, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1074736-52.jpg", "title": "Parasite", "genres": [ "Adventure" ], "platforms": [ "PC" ], "releaseDate": "TBA", "seasonCount": 0 }, { "id": 1300001611, "url": "https://www.metacritic.com/game/parasite-eve/", "slug": "parasite-eve", "type": "game", "year": 1998, "image": "https://www.metacritic.com/a/img/catalog/provider/6/3/6-1-6036-13.jpg", "title": "Parasite Eve", "genres": [ "Action RPG" ], "rating": "M", "metascore": 81, "platforms": [ "PlayStation" ], "description": "One of them is a police officer. The other is possessed by an ancient evil threatening all life on Earth. The horrifying bond between them will continue until something dies. A chilling adventure that could only come from the creators of Final Fantasy VII. An epic sci-fi tale told through stunning 3D rendered sequences. Battle mutant monsters in real-time polygon combat. Customize weapons, armor, and character abilities.", "releaseDate": "1998-09-09", "seasonCount": 0 }, { "id": 1300001612, "url": "https://www.metacritic.com/game/parasite-eve-ii/", "slug": "parasite-eve-ii", "type": "game", "year": 2000, "image": "https://www.metacritic.com/a/img/catalog/provider/6/3/6-1-6047-13.jpg", "title": "Parasite Eve II", "genres": [ "Action RPG" ], "rating": "M", "metascore": 79, "platforms": [ "PlayStation" ], "description": "Aya Brea is back. The Neo Mitochondrion Creature infestation has resurfaced and taken on a sinister twist. The outcome of this battle will determine earth's dominant species. Horrifying CG cinemas and sharper graphics bring the shocking new storyline to life as Aya hunts for the source of the outbreak. Fully-upgradable weapons, customizable armor, and a new, real-time battle system will aid in the conflict, along with powerful new Parasite Energy abilities.", "releaseDate": "2000-01-12", "seasonCount": 0 }, { "id": 1300564728, "url": "https://www.metacritic.com/game/cupid-parasite-sweet-and-spicy-darling/", "slug": "cupid-parasite-sweet-and-spicy-darling", "type": "game", "year": 2024, "image": "https://www.metacritic.com/a/img/catalog/provider/6/3/6-1-985494-13.jpg", "title": "Cupid Parasite: Sweet and Spicy Darling", "genres": [ "Visual Novel" ], "rating": "T", "metascore": 75, "platforms": [ "Nintendo Switch" ], "description": "The highly anticipated follow-up to the divine romantic comedy otome is localised for the west. Fans can now experience a new original story introducing a brand-new character, Merenice Levin.\n\nReturn to the rich romantic scenery of Los York as Lynette, Gill, Shelby, Raul, Ryuki, Allan, Peter, and Merenice indulge in the sweet and spicy side of town.", "releaseDate": "2024-05-28", "seasonCount": 0 }, { "id": 1300501638, "url": "https://www.metacritic.com/game/cupid-parasite/", "slug": "cupid-parasite", "type": "game", "year": 2021, "image": "https://www.metacritic.com/a/img/catalog/provider/6/3/6-1-815144-13.jpg", "title": "Cupid Parasite", "genres": [ "Visual Novel" ], "rating": "T", "metascore": 83, "platforms": [ "Nintendo Switch", "PC" ], "description": "A story about a cupid who ran away from her family after a fight to become the most successful bridal adviser in the human world. One day the heroine's boss calls her up for a job to find 5 hopeless guys (aka parasites) in desperate need of fixing their love life (and prolly their personalities in some cases).", "releaseDate": "2021-11-02", "seasonCount": 0 }, { "id": 1300485342, "url": "https://www.metacritic.com/game/hyperparasite/", "slug": "hyperparasite", "type": "game", "year": 2020, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-684837-52.jpg", "title": "HyperParasite", "genres": [ "Top-Down Shoot-'Em-Up" ], "rating": "M", "metascore": 74, "platforms": [ "Xbox One", "PC", "Nintendo Switch", "PlayStation 4" ], "description": "A rogue-lite twin-stick shooter/brawler that never plays the same twice. Collect and control 60 different characters as the body-snatching alien Parasite with a grudge against humanity. Fight to the top of the food chain: possess the President, push the Big Red Button and one-up the human race.", "releaseDate": "2020-04-03", "seasonCount": 0 }, { "id": 1300551569, "url": "https://www.metacritic.com/game/parasite-slayer/", "slug": "parasite-slayer", "type": "game", "year": 2097, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-833399-52.jpg", "title": "Parasite Slayer", "genres": [ "Action Adventure" ], "platforms": [ "PC" ], "description": "Involving mystery, horror, action and a lot of science fiction, Parasite Slayer takes place in a dimension very similar to ours. However, the time is still the 1980s and future events that will take place will make this dimension very different from ours.\r\n", "releaseDate": "TBA", "seasonCount": 0 }, { "id": 1300541931, "url": "https://www.metacritic.com/game/the-parasites/", "slug": "the-parasites", "type": "game", "year": 2097, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-813356-52.jpg", "title": "The Parasites", "genres": [ "Survival" ], "platforms": [ "PC" ], "releaseDate": "TBA", "seasonCount": 0 }, { "id": 1300704830, "url": "https://www.metacritic.com/game/escape-from-irene-parasite/", "slug": "escape-from-irene-parasite", "type": "game", "year": 2097, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1167110-52.jpg", "title": "Escape from Irene: Parasite", "genres": [ "Adventure" ], "platforms": [ "PC" ], "releaseDate": "TBA", "seasonCount": 0 }, { "id": 1300688358, "url": "https://www.metacritic.com/game/parasite-elevator/", "slug": "parasite-elevator", "type": "game", "year": 2097, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1127929-52.jpg", "title": "Parasite Elevator", "genres": [ "First-Person Adventure" ], "platforms": [ "PC" ], "releaseDate": "TBA", "seasonCount": 0 }, { "id": 1300704672, "url": "https://www.metacritic.com/game/parasite-mutant/", "slug": "parasite-mutant", "type": "game", "year": 2026, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1166920-52.jpg", "title": "Parasite Mutant", "genres": [ "Survival" ], "platforms": [ "PlayStation 5", "PC" ], "description": "Parasite Mutant is a sci-fi horror RPG set in the distant future. Psionic agent Nova was sent on a mission to an abandoned and secluded island city filled with horrifying creatures, not knowing that what happened on the island will completely change her fate.\r\n\r\nParasite Mutant is a survival horror game with a diverse array of horrifying mutants. In the game, players will solve various puzzles in search of answers and maybe uncover the horrifying secret of this universe.", "releaseDate": "TBA 2026", "seasonCount": 0 }, { "id": 1300669359, "url": "https://www.metacritic.com/game/parasite-tunnel/", "slug": "parasite-tunnel", "type": "game", "year": 2025, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1091569-52.jpg", "title": "Parasite Tunnel", "genres": [ "Adventure" ], "platforms": [ "PC" ], "releaseDate": "2025-04-25", "seasonCount": 0 }, { "id": 1300720706, "url": "https://www.metacritic.com/game/unseens-parasite/", "slug": "unseens-parasite", "type": "game", "year": 2097, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1202444-52.jpg", "title": "Unseen's Parasite", "genres": [ "Adventure" ], "platforms": [ "PC" ], "releaseDate": "TBA", "seasonCount": 0 }, { "id": 1300720800, "url": "https://www.metacritic.com/game/chwaest-a-creeping-parasite-horror/", "slug": "chwaest-a-creeping-parasite-horror", "type": "game", "year": 2026, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1202541-52.jpg", "title": "CHWAEST: A Creeping Parasite Horror", "genres": [ "Survival" ], "platforms": [ "PC" ], "description": "CHWÆST takes place inside a living organism. Passages overgrow, corridors tighten, and the environment reacts to your presence.\r\n\r\nAt the center lies the Biomass Core (the Core) - the only way forward.\r\n\r\nYour goal: complete simple objectives, bring offerings back to the Core, and push deeper until you find a way out.", "releaseDate": "2026-02-26", "seasonCount": 0 }, { "id": 1300703858, "url": "https://www.metacritic.com/game/earth-parasite-silo/", "slug": "earth-parasite-silo", "type": "game", "year": 2027, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1164418-52.jpg", "title": "Earth Parasite: Silo", "genres": [ "Roguelike" ], "platforms": [ "PC" ], "releaseDate": "Q2 2027", "seasonCount": 0 }, { "id": 1300702128, "url": "https://www.metacritic.com/game/puzzle-parasite/", "slug": "puzzle-parasite", "type": "game", "year": 2025, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1160314-52.jpg", "title": "Puzzle Parasite", "genres": [ "Action Adventure" ], "metascore": 0, "platforms": [ "PC" ], "description": "Puzzle Parasite is a sci-fi puzzle adventure where you wield telekinetic powers and a cricket bat. You send energy cores flying, power alien tech, and avoid deadly lasers, as you go deeper to uncover the hidden secrets. A handcrafted tribute to the classics that made us think in new ways.\r\n", "releaseDate": "2025-12-03", "seasonCount": 0 }, { "id": 1300638043, "url": "https://www.metacritic.com/game/heavenly-parasite/", "slug": "heavenly-parasite", "type": "game", "year": 2097, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1027658-52.jpg", "title": "Heavenly Parasite", "genres": [ "2D Fighting" ], "platforms": [ "PC" ], "releaseDate": "TBA", "seasonCount": 0 }, { "id": 1300677893, "url": "https://www.metacritic.com/game/soul-harvester-parasite-protocol/", "slug": "soul-harvester-parasite-protocol", "type": "game", "year": 2026, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-1107361-52.jpg", "title": "Soul Harvester: Parasite Protocol", "genres": [ "Strategy" ], "platforms": [ "PC" ], "releaseDate": "Q2 2026", "seasonCount": 0 }, { "id": 1300566309, "url": "https://www.metacritic.com/game/parasite-starinfidel/", "slug": "parasite-starinfidel", "type": "game", "year": 2097, "image": "https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-858950-52.jpg", "title": "Parasite (StarInfidel)", "genres": [ "Roguelike" ], "platforms": [ "PC" ], "description": "This is a roguelike open-world sandbox survival horror set in a modern city.\n\nPlay as an --redacted-- parasite, possess human hosts, exploit and evolve them to help you survive in a hostile world, all to find out your one true purpose.", "releaseDate": "TBA - Early Access", "seasonCount": 0 } ], "nextPage": 2 } ``` --- ### Tv Metacritic TV Detail — info lengkap satu serial TV by slug. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:metacritic/tv/:slug` - **Cache TTL:** 1800s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `slug` | string | path | yes | Slug serial di Metacritic (mis. `breaking-bad`). Boleh tempel URL Metacritic penuh — slug di-ekstrak otomatis | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:metacritic/tv/:slug" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:metacritic/tv/:slug", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:metacritic/tv/:slug", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 1000303212, "url": "https://www.metacritic.com/tv/breaking-bad/", "slug": "breaking-bad", "type": "tv", "year": 2008, "image": "https://www.metacritic.com/a/img/catalog/provider/2/13/2-94077e8f1aa339d2464cb30d6bec2d3f.jpg", "title": "Breaking Bad", "genres": [ "Crime", "Drama", "Thriller" ], "imdbId": "tt0903747", "rating": "TV-MA", "tagline": "In the no-holds-barred world of Walt White, the end justifies the extreme. (season 2)", "networks": [ "AMC" ], "metascore": 87, "userScore": 9.4, "description": "Bryan Cranston (Malcolm in the Middle) stars in this drama focused on a mid-life crisis gone bad for a high school chemistry teacher who becomes a drug dealer after he discovers that he has lung cancer.\r\n\r\nBreaking Bad is produced by High Bridge Productions, Inc. and Gran Via Productions in association with Sony Pictures Television for AMC.", "releaseDate": "2008-01-20", "seasonCount": 5, "userReviewCount": 19189, "criticReviewCount": 98, "metascoreSentiment": "Universal acclaim", "userScoreSentiment": "Universal acclaim", "productionCompanies": [ "High Bridge Productions", "Gran Via Productions", "Sony Pictures Television", "American Movie Classics (AMC)" ], "episodeRuntimeMinutes": 48 } ``` --- _Generated: 2026-08-02T14:30:58.768Z_