## g2/reviews

`GET /v1/g2/reviews`

Reviews of a software product, ten per page, with rating, text, date and the reviewer's role, company size and industry; filterable by stars, segment, industry, role, region and keywords.

*G2 reviews*

| Parameter | Required | Description |
| --- | --- | --- |
| `product` | yes | Product slug or the full G2 product URL — e.g. `postman` |
| `page` | no | Page of 10 reviews; the response carries last_page and a cursor — e.g. `1` |
| `stars` | no | Star ratings to include, comma-separated — e.g. `4,5` |
| `segment` | no | small-business, mid-market or enterprise — e.g. `mid-market` |
| `industry` | no | Industry ids from available_filters, comma-separated — e.g. `274` |
| `role` | no | Reviewer role names or ids, comma-separated — e.g. `user` |
| `region` | no | Reviewer region, comma-separated — e.g. `Europe` |
| `sort` | no | default, most-recent, most-helpful, highest-rated or lowest-rated — e.g. `most-recent` |
| `keywords` | no | Only reviews mentioning this text — e.g. `api testing` |
| `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:** 8 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/g2/reviews?product=postman" \
  -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
{
  "count": 0,
  "has_more": false,
  "items": [
    {
      "dislikes": "example",
      "helpful_count": 0,
      "id": "example",
      "likes": "example",
      "nps_score": 0,
      "platform": "example",
      "posted_at": "2026-09-01T12:00:00Z",
      "product": "example",
      "reviewer": {
        "name": "example"
      },
      "text": "example",
      "title": "example"
    }
  ],
  "product": "example",
  "total_reviews": 0
}
```

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