## g2/seller-products

`GET /v1/g2/seller-products`

The products a software vendor lists on G2, nine per page, with ratings and review counts. Re-wired 6 Sep 2026 on the platform's own page reader (migration 195) after the listing failed.

*G2 seller products*

| Parameter | Required | Description |
| --- | --- | --- |
| `seller` | yes | Seller slug or the full G2 seller URL — e.g. `google` |
| `page` | no | Page of 9 products — e.g. `1` |
| `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:** 2 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/seller-products?seller=google" \
  -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,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "description": "example",
      "image": "https://example.com/example",
      "kind": "example",
      "name": "example",
      "platform": "example",
      "product_id": 0,
      "product_uuid": "example",
      "recognised": false,
      "review_count": 0,
      "slug": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "page": 0,
  "page_size": 0,
  "pages": 0,
  "seller": {
    "name": "example",
    "profiles": 0,
    "slug": "example",
    "url": "https://example.com/example"
  },
  "source": "example"
}
```

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