# G2 Reviews API (https://www.socialcrawl.dev/platforms/g2/reviews) > Returns written G2 reviews for a software product, 10 per page. Filter by star rating, company segment, industry, reviewer role, region, or keyword, and sort by G2 relevance, recency, helpfulness, or rating. G2 caps each filter combination at 10 pages; use the returned cursor until has_more is false. Get the product slug from GET /v1/g2/product. TL;DR: `GET /v1/g2/reviews` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `id` | no | G2 product slug or full G2 product URL. Slug example: postman. URL example: https://www.g2.com/products/postman/reviews. | | `url` | no | G2 product slug or full G2 product URL. Slug example: postman. URL example: https://www.g2.com/products/postman/reviews. | | `page` | no | Page number, starting at 1. Prefer the universal cursor parameter. | | `industry` | no | Comma-separated G2 industry ids. Discover valid ids from a first unfiltered call. | | `keywords` | no | Free-text search inside review bodies. | | `region` | no | Comma-separated reviewer regions: North America, Europe, Asia, Latin America, Middle East, Africa, ANZ. | | `role` | no | Comma-separated reviewer roles, for example Administrator, User, Consultant. | | `segment` | no | Reviewer company size: small-business (50 or fewer), mid-market (51-1000), enterprise (more than 1000). (small-business \| mid-market \| enterprise) | | `sort` | no | Review order. Default is G2 relevance. (default \| most-recent \| most-helpful \| highest-rated \| lowest-rated) | | `stars` | no | Comma-separated star ratings, for example 4,5. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/g2/reviews" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full G2 API: https://www.socialcrawl.dev/platforms/g2 ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing