# G2 Data API (https://www.socialcrawl.dev/platforms/g2) > Access G2 data through 7 API endpoints. Profiles, posts, comments, search, and more. Unified schema, AI-enriched. Free trial. TL;DR: SocialCrawl's G2 API exposes 7 endpoints, 1 to 5 credits per call, all returning one unified JSON schema with AI-enriched fields. Single x-api-key auth, 100 free credits on signup. ## Endpoints | Endpoint | Method | Path | Credits | Description | | --- | --- | --- | --- | --- | | Product | GET | `/v1/g2/product` | 5 | Get a G2 product by slug or URL | | Reviews | GET | `/v1/g2/reviews` | 5 | Get G2 reviews for a product | | Category | GET | `/v1/g2/category` | 5 | List products in a G2 category | | Categories | GET | `/v1/g2/categories` | 1 | List every G2 category URL | | Seller | GET | `/v1/g2/seller` | 5 | Get a G2 seller (vendor) profile | | Seller Products | GET | `/v1/g2/seller/products` | 5 | List products for a G2 seller | | Product Index | GET | `/v1/g2/product-index` | 5 | List G2 product URLs | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/g2/product" \ -H "x-api-key: sc_YOUR_API_KEY" ``` Every response shares one JSON envelope: `{ success, platform, endpoint, data, credits_used, credits_remaining }`. ## 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