# G2 Seller Products API (https://www.socialcrawl.dev/platforms/g2/seller-products) > Returns one page of a G2 seller's product portfolio, 9 per page: name, slug, rating, review count, and description. Use GET /v1/g2/seller when you also need the seller profile. TL;DR: `GET /v1/g2/seller/products` 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 seller slug or full G2 seller URL. Slug example: hubspot. URL example: https://www.g2.com/sellers/hubspot. | | `url` | no | G2 seller slug or full G2 seller URL. Slug example: hubspot. URL example: https://www.g2.com/sellers/hubspot. | | `page` | no | Page number, starting at 1. Prefer the universal cursor parameter. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/g2/seller/products?id=google" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list products for a G2 seller? Send GET /v1/g2/seller/products with id or url set to the seller slug (google) or seller page URL. Each page returns 9 ProductList rows: name, slug, rating, review count, and description. ### When should I use seller instead of seller/products? Use GET /v1/g2/seller when you need the vendor profile (headquarters, founded year, aggregate rating) plus a teaser page. Use seller/products when you only want to page the portfolio. ### How do I deepen a portfolio row? Each row includes the product slug as id. Pass it to GET /v1/g2/product for the full listing or GET /v1/g2/reviews for written reviews. ### How many products come back per page? Nine per page. Pass the returned cursor back until has_more is false to walk the whole portfolio. ### How much does this endpoint cost? Each live miss costs 5 credits on the advanced tier. Cache hits cost 0. Empty portfolios are refunded. New accounts get 100 free credits with no credit card required. 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 ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to list a G2 vendor's products with an API - What is the difference between G2 seller and seller products?