## g2/seller

`GET /v1/g2/seller`

A software vendor's G2 seller profile with its product portfolio and cross-product review teasers. Re-wired 6 Sep 2026 on the platform's own page reader (migration 195) after the listing failed.

*G2 seller profile*

| Parameter | Required | Description |
| --- | --- | --- |
| `seller` | yes | Seller slug or the full G2 seller URL — e.g. `hubspot` |
| `products_page` | no | Page of the seller's products (9 per page) — e.g. `1` |
| `reviews_page` | no | Page of cross-product review teasers (3 per page, up to 10 pages) — 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:** 1 credit 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?seller=hubspot" \
  -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
{
  "about": {
    "description": "example",
    "hq_location": "example",
    "linkedin": "https://example.com/example",
    "ownership": "example",
    "phone": "example",
    "social_handle": "example",
    "website": "example",
    "year_founded": 0
  },
  "featured_products": [
    {
      "description": "example",
      "image": "https://example.com/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"
    }
  ],
  "name": "example",
  "platform": "example",
  "products": {
    "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
  },
  "rating_breakdown": {
    "five": 0,
    "four": 0,
    "one": 0,
    "three": 0,
    "two": 0
  },
  "reviews": {
    "count": 0,
    "cursor": null,
    "has_more": false,
    "items": [
      {
        "id": "example",
        "product_slug": "example",
        "title": "example",
        "url": "https://example.com/example"
      }
    ],
    "note": "example",
    "page": 0,
    "pages": 0
  },
  "slug": "example",
  "source": "example",
  "stats": {
    "average_rating": 0,
    "categories": 0,
    "grid_leader": false,
    "profiles": 0,
    "reviews": 0,
    "serving_since": 0,
    "top_in_categories": 0
  },
  "type": "example",
  "url": "https://example.com/example"
}
```

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