## g2/category

`GET /v1/g2/category`

The products in a G2 software category, with their typical user roles, industries and market segments. Re-wired 6 Sep 2026 on the platform's own page reader (migration 195) after the listing failed.

*G2 category products*

| Parameter | Required | Description |
| --- | --- | --- |
| `category` | yes | Category slug or the full G2 category URL — e.g. `marketing-automation` |
| `page` | no | Page of 15 products — e.g. `1` |
| `sort` | no | g2-score, popularity or satisfaction — e.g. `g2-score` |
| `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/category?category=marketing-automation" \
  -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
{
  "breadcrumbs": [
    {
      "name": "example",
      "url": "https://example.com/example"
    }
  ],
  "count": 0,
  "cursor": null,
  "description": "example",
  "has_more": false,
  "items": [
    {
      "cons": [
        "example"
      ],
      "image": "https://example.com/example",
      "name": "example",
      "platform": "example",
      "position": 0,
      "pricing": {
        "currency": "example",
        "high": 0,
        "low": 0,
        "offers": 0
      },
      "product_id": 0,
      "product_uuid": "example",
      "pros": [
        "example"
      ],
      "rating": {
        "average": 0,
        "count": 0
      },
      "slug": "example",
      "type": "example",
      "url": "https://example.com/example",
      "vendor": {
        "id": 0,
        "name": "example",
        "slug": "example",
        "url": "https://example.com/example"
      }
    }
  ],
  "name": "example",
  "page": 0,
  "page_size": 0,
  "pages": 0,
  "platform": "example",
  "slug": "example",
  "sort": {
    "order_param": "example",
    "requested": "example",
    "verified": false
  },
  "source": "example",
  "total_listings": 0,
  "type": "example",
  "url": "https://example.com/example"
}
```

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