Fake Product Review
The Fake Product Review API generates one review per call. The star count (1-5) shapes the body and headline — 1 star is unhinged, 3 stars is fine, 5 stars is concerning enthusiasm. Includes a reviewer name, verified-purchase status, helpful votes, and a posting date within the last year.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
product |
string |
Required | — | Product name. |
stars |
number |
Optional | 3 |
1-5 (default 3). |
Examples
curl "https://api.stupidapis.com/fake-product-review/review?product=ergonomic+keyboard&stars=1"
import requests
response = requests.get(
"https://api.stupidapis.com/fake-product-review/review",
params={"product": "ergonomic keyboard", "stars": 1}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/fake-product-review/review?product=ergonomic+keyboard&stars=1" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
product |
string |
Echoed back |
stars |
number |
Star rating |
headline |
string |
Review headline |
body |
string |
Review body |
reviewer |
string |
Reviewer name |
verified_purchase |
boolean |
Verified status |
helpful_votes |
number |
Helpful vote count |
posted |
string |
Date posted |
Example Response
{
"product": "ergonomic keyboard",
"stars": 1,
"headline": "Disappointing",
"body": "Crashed once in 2019. My grandmother died the next year. Coincidence?",
"reviewer": "A Verified Customer",
"verified_purchase": true,
"helpful_votes": 47,
"posted": "2026-02-14"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/fake-product-review/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.