EveryData platform API

Trustpilot API

Across Trustpilot, Trustpilot business profiles and consumer review records are available through 2 separately documented actions, with `profile`, `reviews` illustrating the distinct request shapes.

Trustpilot keeps `profile` records separate from `reviews`. Both actions use `company`, but their objects and response fields remain distinct.

Endpoint
POST /api/v1/social
Capabilities
2
Per 1,000
$1.389

Available capabilities

Compare the Trustpilot actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.

ActionRequiredOptionalDeliveryLimitPer 1,000Response fields
profile

Details

Retrieve details from Trustpilot. Accepts these parameters: company, verified_only, and lang. Returns these fields: name, rating_scale, review_count, and trust_score.

companylang, verified_onlySync delivery$1.39 per 1,000 requestsname · domain · url · trust_score · rating · rating_scale · review_count · categories · platform
reviews

Reviews

Retrieve public reviews from Trustpilot. Accepts these parameters: lang, stars, company, sort, language, verified_only, and date. Returns these fields: reply_at, is_verified, text, and like_count.

companydate, lang, language, sort, stars, verified_onlySync deliveryCatalog values: defaultLimit=20, maxLimit=200. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count.$1.39 per 1,000 requestsid · url · title · text · rating · rating_scale · language · like_count · is_verified · verification_level · source · country · author_name · author_id · author_image · author_review_count · reply_text · reply_at · experience_at · updated_at · posted_at · company_name · company_domain · platform

What does each Trustpilot action accept?

Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.

Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.

What do the Trustpilot profile parameters mean?

Retrieve details from Trustpilot. Accepts these parameters: company, verified_only, and lang. Returns these fields: name, rating_scale, review_count, and trust_score.

companyRequired
Target company website domain (such as example.com) or full Trustpilot /review/ URL. It does not accept localized business names. In profile, it aggregates company profiles and ratings from linked reviews, while reviews fetches individual review records.
Trustpilot: TrustScore and Displayed Star RatingsTrustpilot computes its TrustScore using review recency, frequency, and a weighted average rather than a simple arithmetic average of all reviews. Displayed star ratings are derived by rounding the TrustScore.Checked
langOptional
Review language code accepting a single code or array string (such as en or ["en","de"]), which takes precedence over language. Filtering reviews within profile may impact the availability of linked company data.
verified_onlyOptional
Boolean flag (true or false) filtering for verified review status. This reflects Trustpilot's consumer review verification label and does not indicate an EveryInfra platform audit.

What do the Trustpilot reviews parameters mean?

Retrieve public reviews from Trustpilot. Accepts these parameters: lang, stars, company, sort, language, verified_only, and date. Returns these fields: reply_at, is_verified, text, and like_count.

companyRequired
Target company website domain (such as example.com) or full Trustpilot /review/ URL. It does not accept localized business names. In profile, it aggregates company profiles and ratings from linked reviews, while reviews fetches individual review records.
dateOptional
Preset date range filter for the reviews action. Allowed values are last30days, last3months, last6months, and last12months. Leaving this field empty returns all-time reviews; custom date strings are not accepted.
langOptional
Review language code accepting a single code or array string (such as en or ["en","de"]), which takes precedence over language. Filtering reviews within profile may impact the availability of linked company data.
languageOptional
Single language code string (such as en, fr, de, or es) for filtering reviews in the reviews action. If lang is provided, lang takes precedence over this parameter.
sortOptional
Sorting mode for the reviews action. Allowed values are recency (default, sorts by newest reviews) and relevance. Pass recency explicitly rather than using generic aliases from other platforms.
starsOptional
Array of rating star strings (such as ["1","2"]) to filter reviews by star counts from 1 to 5. Leaving this field empty includes all ratings; it does not represent a minimum rating threshold.
Trustpilot: Filtered Sample Averages vs. Official TrustScoreTrustpilot documentation states that review sources do not alter weighting in TrustScore calculations. Calculating an average from low-star ratings, specific sources, or narrow timeframes does not constitute an official company TrustScore.Checked
verified_onlyOptional
Boolean flag (true or false) filtering for verified review status. This reflects Trustpilot's consumer review verification label and does not indicate an EveryInfra platform audit.

How to use the Trustpilot API

  1. 01Read the public catalog and choose a platform action.
  2. 02Send the platform, action, and required parameters to POST /api/v1/social.
  3. 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
  4. 04Store the structured response fields needed by your application.
trustpilot_profile.sh
curl -X POST https://api.everyinfra.com/api/v1/social \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"trustpilot","action":"profile","params":{"company":"<company>"}}'

Trustpilot API questions

What can I retrieve with the Trustpilot API?

Set platform to trustpilot. The current catalog lists details and reviews. These action names identify different Trustpilot objects or views; they are not interchangeable search modes.

Which input starts a Trustpilot `profile` request?

Target company website domain (such as example.com) or full Trustpilot /review/ URL. It does not accept localized business names. In profile, it aggregates company profiles and ratings from linked reviews, while reviews fetches individual review records. Send it as company inside params.

Which fields can Trustpilot `profile` return?

Its declared schema includes name, domain, trust_score, and rating. A declared field can still be absent from an individual source record, and every other action has its own field list.

Does every Trustpilot action return immediately?

No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.