# Trustpilot Company Details

Get detailed company profile from Trustpilot.

- **Documentation:** [https://scrappa.co/docs/trustpilot-api/trustpilot_company_details](https://scrappa.co/docs/trustpilot-api/trustpilot_company_details)
- **API group:** Trustpilot API
- **Endpoint:** `GET https://scrappa.co/api/trustpilot/company-details`

## 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 |
| --- | --- | --- | --- |
| `company_domain` | string | Yes | Company domain |
| `locale` | string | No | Locale for Trustpilot page localization (e.g. en-US, de-DE). Review language defaults to languages=all unless the languages parameter is set. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/trustpilot/company-details?company_domain=amazon.com"
```

## Example response

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

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 422 | Validation Error | The company_domain parameter is required and locale must be valid when provided. |
| 402 | Insufficient Credits | Your API key is valid, but the account has no free, subscription, or package credits available. |
| 500 | Trustpilot Service Error | The Trustpilot endpoint could not complete the current scrape attempt. |
| 503 | The upstream service is temporarily unavailable. Please retry shortly. | The upstream service is temporarily unavailable. Please retry shortly. |

## 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)
