Contract
{
"type": "object",
"required": [
"user_id"
],
"properties": {
"user_id": {
"type": "string",
"description": "Trustpilot user ID (alphanumeric string from reviewer.id in review results)"
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The reviewer's own opaque account id (echoes the input user_id)."
},
"name": {
"type": "string",
"description": "The reviewer's public display name, as published on their own Trustpilot profile. Observed once ('May'); a profile with no display name set is unconfirmed."
},
"country": {
"type": "string",
"description": "Reviewer's country, e.g. 'United States'."
},
"reviews": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Opaque internal review record id."
},
"date": {
"type": "string",
"description": "ISO 8601 timestamp the review was posted."
},
"text": {
"type": "string",
"description": "Full free-text review body."
},
"title": {
"type": "string"
},
"rating": {
"type": "integer",
"description": "Observed 3 on the one real call; full 1-5 range unconfirmed."
},
"company": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Opaque internal company id."
},
"name": {
"type": "string"
},
"domain": {
"type": "string",
"description": "Company's web domain, e.g. 'www.amazon.com'."
}
},
"description": "The company this review was left for.",
"additionalProperties": true
}
},
"additionalProperties": true
},
"description": "This reviewer's individual reviews. 1 entry on the one real call observed; array length beyond 1 is unconfirmed."
},
"review_count": {
"type": "integer",
"description": "This reviewer's total review count on the platform."
}
},
"additionalProperties": true
},
"status": {
"type": "string",
"description": "'success' on the one real populated call observed."
}
},
"description": "The reviewer profile, as returned at routing.responseResultPath ($.output) after shaping. Observed as an empty object (no `status`, no `data` key at all) when the requested reviewer ID does not exist (see examples/nonexistent-user.json) -- that call still settles COMPLETED, but bills $0 (billedUnits 0) rather than the quoted per-call price. Check for a missing/falsy `data` key before reading `.data.reviews`, not for the result being `null`.",
"additionalProperties": true
}Pricing
Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.
Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.
| Charge | Rate |
|---|---|
Per call Flat, regardless of what comes back | $0.01365 |
- Cost basis
- Not recorded
This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.
- Updated
- Sep 8, 2026
