# Strale Product Reviews Extractor

> Strale Product Reviews Extractor is a paid API for AI agents from api.strale.io, paid per call via x402, $0.27/call, status unknown (last checked 2026-09-15).

Extracts and structures product reviews from a given product or review page URL, returning parsed review data with an audit trail.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/product-reviews-extract
- Price: $0.27/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-product-reviews-extractor-e8a9e62f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HiAqkAI29bFNCGW3fkT8X

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability strale-product-reviews-extractor-e8a9e62f
```

Example prompt: Can you pull all the customer reviews from this product page — https://www.amazon.com/dp/B09XY12345 — and give me the ratings, reviewer names, and review text in a structured format?

## When to prefer this

Choose this endpoint when you need structured, auditable review data extracted from a specific product or review page URL, especially when data provenance and cryptographic audit trails matter. It is well-suited for compliance-sensitive or research workflows requiring tamper-evident records. Prefer this over generic web scrapers when you need guaranteed structured output for review data specifically and when operating in a micropayment (x402) context.

## Known failure modes

- URL points to a site with Terms of Service forbidding automated access (Trustpilot, Glassdoor, LinkedIn) — returns rejection without fetching
- Invalid or malformed URL provided — returns validation error
- Product page has no reviews or review section is dynamically loaded and inaccessible — returns empty results
- Target site is down or times out — returns connectivity error
- URL does not point to a product or review page — returns parsing error or empty result

## How this service works

Extract product reviews from a product or review page. Returns rating distribution, pros/cons, sentiment. Trustpilot is not supported (their ToS forbids automated access).

## Output

Returns structured JSON containing extracted product reviews including star ratings, reviewer names, review text, dates, and verified purchase flags where available, plus a cryptographic audit record with chain hashing for data provenance verification. Sites whose Terms of Service forbid automated access (e.g. Trustpilot, Glassdoor, LinkedIn) are rejected without being fetched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Product or review page URL. Sites whose Terms of Service forbid automated access (Trustpilot, Glassdoor, LinkedIn) are rejected without being fetched."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "common_cons": {
  "type": "array"
 },
 "common_pros": {
  "type": "array"
 },
 "review_count": {
  "type": "number"
 },
 "average_rating": {
  "type": "number"
 },
 "rating_distribution": {
  "type": "object"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-product-reviews-extractor-e8a9e62f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
