Movie Reviews API
nytimes · Media
With the Movie Reviews API, you can search New York Times movie reviews by keyword and get lists of NYT Critics' Picks.
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
GET /reviews/search.json
https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/search.json?order=asc&query=test&offset=20&reviewer=example&critics-pick=Y&opening-date=example&publication-date=example
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/search.json?order=asc&query=test&offset=20&reviewer=example&critics-pick=Y&opening-date=example&publication-date=example"
import requests
params = {
"order": "asc",
"query": "test",
"offset": "20",
"reviewer": "example",
"critics-pick": "Y",
"opening-date": "example",
"publication-date": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/search.json",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/search.json');
url.searchParams.set('order', 'asc');
url.searchParams.set('query', 'test');
url.searchParams.set('offset', '20');
url.searchParams.set('reviewer', 'example');
url.searchParams.set('critics-pick', 'Y');
url.searchParams.set('opening-date', 'example');
url.searchParams.set('publication-date', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/search.json")
q := baseURL.Query()
q.Set("order", "asc")
q.Set("query", "test")
q.Set("offset", "20")
q.Set("reviewer", "example")
q.Set("critics-pick", "Y")
q.Set("opening-date", "example")
q.Set("publication-date", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/search.json")
uri.query = URI.encode_www_form({
"order" => "asc",
"query" => "test",
"offset" => "20",
"reviewer" => "example",
"critics-pick" => "Y",
"opening-date" => "example",
"publication-date" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/search.json?" . http_build_query([
"order" => "asc",
"query" => "test",
"offset" => "20",
"reviewer" => "example",
"critics-pick" => "Y",
"opening-date" => "example",
"publication-date" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
GET /reviews/{resource-type}.json
https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/{resource-type}.json?order=by-publication-date&offset=20
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/{resource-type}.json?order=by-publication-date&offset=20"import requests
params = {
"order": "by-publication-date",
"offset": "20"
}
response = requests.get(
"https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/{resource-type}.json",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/{resource-type}.json');
url.searchParams.set('order', 'by-publication-date');
url.searchParams.set('offset', '20');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/{resource-type}.json")
q := baseURL.Query()
q.Set("order", "by-publication-date")
q.Set("offset", "20")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/{resource-type}.json")
uri.query = URI.encode_www_form({
"order" => "by-publication-date",
"offset" => "20"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/reviews/{resource-type}.json?" . http_build_query([
"order" => "by-publication-date",
"offset" => "20"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
GET /critics/{resource-type}.json
https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/critics/{resource-type}.json
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/critics/{resource-type}.json"import requests
response = requests.get(
"https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/critics/{resource-type}.json",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/critics/{resource-type}.json';
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/critics/{resource-type}.json"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/critics/{resource-type}.json")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/nytimes.com/movie_reviews/2.0.0/critics/{resource-type}.json";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Movie Reviews API?
Movie Reviews API is a Media API. Developers commonly use media APIs for:
- storing and delivering images, video, and audio
- building digital asset management and media libraries
- transcoding and optimising media for the web
- adding video streaming and playback to your app
- automating content tagging and metadata extraction
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Movie Reviews API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide