List published reviews
curl --request GET \
--url https://sendpaperplane.com/v1/reviewsimport requests
url = "https://sendpaperplane.com/v1/reviews"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://sendpaperplane.com/v1/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://sendpaperplane.com/v1/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sendpaperplane.com/v1/reviews"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}require 'uri'
require 'net/http'
url = URI("https://sendpaperplane.com/v1/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sendpaperplane.com/v1/reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://sendpaperplane.com/v1/reviews")
.asString();{
"status": "ok",
"reviews": [
{
"id": "rev_a1b2c3d4",
"stars": 5,
"comment": "Sent a certified letter without leaving my desk. Arrived in 3 days.",
"name": "Jordan R.",
"city": "Springfield",
"state": "IL",
"category": "certified",
"created_at": "2026-08-10T09:00:00.000Z"
}
]
}List published reviews
Only 4- and 5-star reviews written about a real delivered order are published, newest first, capped at 24. sample: true marks an illustrative entry rather than a real customer; the live wall no longer seeds any, so in practice the flag is absent or false.
GET
/
v1
/
reviews
List published reviews
curl --request GET \
--url https://sendpaperplane.com/v1/reviewsimport requests
url = "https://sendpaperplane.com/v1/reviews"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://sendpaperplane.com/v1/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://sendpaperplane.com/v1/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sendpaperplane.com/v1/reviews"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}require 'uri'
require 'net/http'
url = URI("https://sendpaperplane.com/v1/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sendpaperplane.com/v1/reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://sendpaperplane.com/v1/reviews")
.asString();{
"status": "ok",
"reviews": [
{
"id": "rev_a1b2c3d4",
"stars": 5,
"comment": "Sent a certified letter without leaving my desk. Arrived in 3 days.",
"name": "Jordan R.",
"city": "Springfield",
"state": "IL",
"category": "certified",
"created_at": "2026-08-10T09:00:00.000Z"
}
]
}Response
200 - application/json
Published reviews, newest first
Allowed value:
"ok"Hide child attributes
Hide child attributes
Required range:
-9007199254740991 <= x <= 9007199254740991Last modified on September 17, 2026
Was this page helpful?