# Trustpilot Score & Reviews Lookup

> Trustpilot Score & Reviews Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.01/call, status down (last checked 2026-09-14).

Fetches Trustpilot trust score, star rating, review count, and rating distribution for a given domain

## Facts

- Endpoint: POST https://api.strale.io/x402/trustpilot-score
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-934e3269
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z1ULDIdrSRuLccaSRJbbn

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 api-strale-io-934e3269 -d '<json body>'
```

Example prompt: Can you pull the Trustpilot score for shopify.com — I want to see their overall trust score, star rating, and how the reviews break down across the 1-5 star categories?

## When to prefer this

Use this endpoint when you need quick, structured Trustpilot reputation data for a domain — especially useful for vendor due diligence, competitive research, or enriching company profiles. Prefer this over scraping Trustpilot directly since it returns clean structured JSON with score, rating, and distribution in a single call for $0.01 USDC.

## Known failure modes

- Domain not found on Trustpilot — returns empty or null scores
- Invalid domain format — missing TLD or malformed input
- Domain has no reviews yet — review count zero, scores may be null
- Rate limit or payment failure — HTTP 402 if USDC payment not attached
- Trustpilot data temporarily unavailable — upstream service error

## How this service works

Get Trustpilot score and reviews for a domain. Returns trust score, rating distribution, recent reviews. SQS: 98/100.

## Output

Returns a numeric Trustpilot trust score (0-10), a star rating (1-5), total review count, and an object showing the distribution of reviews across each star tier (1 through 5 stars)

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string",
   "description": "Domain name (e.g. stripe.com)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "trustscore": {
  "type": "number"
 },
 "star_rating": {
  "type": "number"
 },
 "review_count": {
  "type": "number"
 },
 "rating_distribution": {
  "type": "object"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-934e3269/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)
