## panorama/reputation

`GET /v1/panorama/reputation`

A brand's reputation across Trustpilot, both app stores, its Google Business listing, TripAdvisor when a place is given and the news echo, blended into a published-weight composite score with company and product axes, per-source ratings and samples, and, on request, themed praise and complaints.

*Brand reputation across sources*

| Parameter | Required | Description |
| --- | --- | --- |
| `brand` | yes | Brand or company name — e.g. `Monzo` |
| `trustpilot_domain` | no | The brand's Trustpilot page domain (skips the Trustpilot search) — e.g. `monzo.com` |
| `sources` | no | Sources to include (tripadvisor when place is set) — e.g. `trustpilot,app_store,google_play,google_business,news` |
| `country` | no | Storefront country for the app stores — e.g. `gb` |
| `depth` | no | Reviews per source in the sample, 1 to 50 — e.g. `20` |
| `app_store_id` | no | App Store id (skips the app search) — e.g. `1052238659` |
| `google_play_id` | no | Play package (skips the app search) — e.g. `co.uk.getmondo` |
| `place` | no | A TripAdvisor page URL to add as a source |
| `include` | no | themes: a model pass that names recurring praise and complaints with verbatim quotes — e.g. `themes` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 30 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/panorama/reputation?brand=Monzo" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "brand": "My Brand",
  "identity_resolution": {
    "app_store": {
      "status": "explicit",
      "selected_id": "123456789",
      "kind": "app",
      "ownership_verified": false,
      "basis": "caller_supplied_identifier",
      "variant_status": null,
      "candidates_examined": 0,
      "compatible_candidates": 0,
      "candidates": []
    }
  },
  "sources": {
    "app_store": {
      "axis": "product",
      "app_id": "123456789",
      "name": "My Brand",
      "rating": 4,
      "sample_mean": null,
      "sample_size": 0
    }
  },
  "composite_score": 4,
  "axes": {
    "company": null,
    "product": 4
  },
  "reviews": [],
  "count": 0,
  "news": null,
  "themes": null
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/panorama/reputation#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/panorama/reputation.json)
