The Report of the Week
Every food & drink review from TheReportOfTheWeek, as JSON
A community-built API cataloguing YouTuber TheReportOfTheWeek's food, drink and 'Running On Empty' reviews. Filter /api/v1/reports by category, rating or date to get products, manufacturers, video codes and scores. Keyless JSON.
GET https://www.thereportoftheweekapi.com/api/v1/reports/?min_rating=9&max_rating=10
{
"reports": [
{
"product": "All-American Smasher Meal",
"manufacturer": "Sonic",
"category": "Running On Empty",
"videoCode": "5JGfGqH5Oyg",
"dateReleased": "2026-01-23",
"rating": 9.1,
"id": "fcb96f7b-505e-47c6-b3fa-b031ea962caf"
}
]
}curl "https://www.thereportoftheweekapi.com/api/v1/reports/?min_rating=9&max_rating=10"const res = await fetch("https://www.thereportoftheweekapi.com/api/v1/reports/?min_rating=9&max_rating=10");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.thereportoftheweekapi.com/api/v1/reports/?min_rating=9&max_rating=10")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/api/v1/reports/?min_rating=9&max_rating=10PROBEDEvery food & drink review from TheReportOfTheWeek, as JSON
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/v1/reports/?limit=5Reports — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
The Report of the Week: common questions
Is The Report of the Week free to use?
Yes — The Report of the Week is a free health & food API. Free tier: Free — no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does The Report of the Week need an API key?
No — The Report of the Week needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call The Report of the Week from the browser?
Not directly — The Report of the Week doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is The Report of the Week up right now?
As of our last scheduled check, The Report of the Week is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.