## g2/product

`GET /v1/g2/product`

A software product's G2 profile: rating, review count, pricing plans, feature scores, alternatives, comparisons, company details and public social profiles. Contact details are never included.

*G2 product profile*

| Parameter | Required | Description |
| --- | --- | --- |
| `product` | yes | Product slug or the full G2 product URL — e.g. `postman` |
| `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/product?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
{
  "alternatives": [],
  "categories": [
    {
      "name": "example"
    }
  ],
  "category": {
    "name": "example"
  },
  "company": {},
  "comparisons": [],
  "description": "example",
  "features": [],
  "logo": "example",
  "name": "example",
  "platform": "example",
  "pricing_plans": [],
  "rating": 0,
  "review_count": 0,
  "reviews_url": "https://example.com/example",
  "score": 0,
  "seller": {
    "name": "example"
  },
  "slug": "example",
  "social": {
    "discord": [],
    "facebook": [],
    "github": [],
    "instagram": [],
    "linkedin": [],
    "twitter": [],
    "youtube": []
  },
  "summary": "example",
  "technologies": [],
  "url": "https://example.com/example",
  "website_inferred": false
}
```

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