# TrustedShops Reviews

Fetch review records for a specific TrustedShops shop by TSID and return structured review data for reputation monitoring, product quality analysis, review dashboards, and merchant intelligence workflows.

Use [TrustedShops Search](/docs/trustedshops-api/trustedshops_search) to find the TSID for a shop name or domain first. Call [TrustedShops Shop Profile](/docs/trustedshops-api/trustedshops_shop) when you need profile metadata for the same merchant, including its target market and profile-level fields.

- **Documentation:** [https://scrappa.co/docs/trustedshops-api/trustedshops_reviews](https://scrappa.co/docs/trustedshops-api/trustedshops_reviews)
- **API group:** TrustedShops API
- **Endpoint:** `GET https://scrappa.co/api/trustedshops/reviews/{tsid}`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `tsid` | string | Yes | TrustedShops shop ID |
| `tsid` | string | No | Trusted Shops ID (33 uppercase alphanumeric characters). |
| `page` | integer | No | Page number (1-1000). |
| `size` | integer | No | Reviews per page (1-100). |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/trustedshops/reviews/{tsid}?tsid=XFB15FFBDE1DEE7A55D292A7D48598A6A"
```

## Example response

```json
{
    "reviews": []
}
```

## Frequently asked questions

### What identifier does the TrustedShops Reviews API require?

The Reviews endpoint requires a shop TSID. You can get a TSID from TrustedShops Search results or from an existing TrustedShops profile URL.

### What review fields are available?

Responses can include review IDs, creation dates, comments, ratings, customer names, order dates, verification type, helpful votes, criteria, and statement details when those fields are available upstream.

### When should I use Reviews instead of Shop Profile?

Use Reviews for individual review records and rating text. Use Shop Profile for merchant-level metadata such as TSID, URL, name, language, and target market.

## Related endpoints

- [TrustedShops Search](https://scrappa.co/docs/trustedshops-api/trustedshops_search)
- [TrustedShops Shop Profile](https://scrappa.co/docs/trustedshops-api/trustedshops_shop)
- [TrustedShops Markets](https://scrappa.co/docs/trustedshops-api/trustedshops_markets)

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
