Trustpilot · Schema
Trustpilot Review
Represents a consumer review on the Trustpilot platform, for either service or product reviews.
Consumer ReviewsReviewsTrustRatingsBusiness ProfilesProduct Reviews
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique Trustpilot review identifier. |
| stars | integer | Star rating given by the consumer (1-5). |
| title | string | Review title. |
| text | string | Full review body text. |
| language | string | ISO 639-1 language code of the review. |
| createdAt | string | Timestamp when the review was created. |
| updatedAt | string | Timestamp when the review was last updated. |
| consumer | object | Consumer who wrote the review. |
| businessUnit | object | Business unit the review is for. |
| status | string | Current review status. |
| verificationLevel | string | Verification level indicating review authenticity. |
| orderId | stringnull | Order identifier associated with review (private reviews only). |
| reply | objectnull | Company reply to the review. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/trustpilot/main/json-schema/trustpilot-review-schema.json",
"title": "Trustpilot Review",
"description": "Represents a consumer review on the Trustpilot platform, for either service or product reviews.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique Trustpilot review identifier."
},
"stars": {
"type": "integer",
"minimum": 1,
"maximum": 5,
"description": "Star rating given by the consumer (1-5)."
},
"title": {
"type": "string",
"description": "Review title."
},
"text": {
"type": "string",
"description": "Full review body text."
},
"language": {
"type": "string",
"description": "ISO 639-1 language code of the review."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the review was created."
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the review was last updated."
},
"consumer": {
"type": "object",
"description": "Consumer who wrote the review.",
"properties": {
"id": {
"type": "string",
"description": "Consumer identifier."
},
"displayName": {
"type": "string",
"description": "Consumer's display name."
},
"email": {
"type": "string",
"format": "email",
"description": "Consumer email (private reviews only)."
}
},
"required": ["id", "displayName"]
},
"businessUnit": {
"type": "object",
"description": "Business unit the review is for.",
"properties": {
"id": {
"type": "string",
"description": "Business unit identifier."
}
},
"required": ["id"]
},
"status": {
"type": "string",
"enum": ["active", "archived"],
"description": "Current review status."
},
"verificationLevel": {
"type": "string",
"description": "Verification level indicating review authenticity."
},
"orderId": {
"type": ["string", "null"],
"description": "Order identifier associated with review (private reviews only)."
},
"reply": {
"type": ["object", "null"],
"description": "Company reply to the review.",
"properties": {
"message": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
}
}
}
},
"required": ["id", "stars", "createdAt", "consumer", "businessUnit", "status"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/trustpilot-review"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.