# G2 Product Info ## Overview | Property | Value | |----------|-------| | **Status** | degraded | | **Method** | `GET` | | **Endpoint** | `/v2/g2/product/info` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 2 credits per call | | **Documentation** | https://www.piloterr.com/library/g2-product-info | ## Description Retrieve comprehensive product data from G2, including ratings, reviews, pricing plans, company info, and social media metrics. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/g2/product/info' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Get G2 info for Postman ```json { "rating": 4.6, "reviews": [ { "reviewer": { "reviewer_industry": "Small-Business", "reviewer_company_size": "50 or fewer emp." }, "review_id": 9104210, "publish_date": "Jan 11, 2024", "review_title": "A great product but terrible customer service", "review_rating": 0 } ], "what_is": "Postman is the world's leading API platform, used by more than 30 million developers and 500,000 organizations worldwide for building and managing APIs.", "category": "API Platforms", "seller_name": "Postman", "twitter_url": "https://x.com/getpostman", "linkedin_url": "https://www.linkedin.com/company/3795851/", "product_logo": "https://images.g2crowd.com/uploads/product/image/large_detail/large_detail_fd527e1fc777d9e31b2a28e8d3c959a4/postman.jpg", "product_name": "Postman", "product_type": "Software", "pricing_plans": [ { "name": "Free Plan", "price": "Free" }, { "name": "Basic Plan", "price": "14.00" }, { "name": "Professional Plan", "price": "29.00" }, { "name": "Enterprise Plan", "price": "49.00" } ], "reviews_count": 1219, "company_location": "San Francisco, CA", "discussions_count": 17, "star_distribution": { "1": 5, "2": 0, "3": 11, "4": 194, "5": 1009 }, "product_description": "Postman enables teams to efficiently collaborate at every stage of the API lifecycle while prioritizing quality, performance, and security.", "company_year_founded": "2014", "twitter_followers_count": 53051, "linkedin_employees_count": 2654 } ``` ## Documentation ## Overview The G2 Product Info endpoint retrieves comprehensive data from any G2 product page, including ratings, reviews, pricing plans, and company details. ## Quickstart ``` GET https://api.piloterr.com/v2/g2/product/info?query=postman ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Product name or G2 URL | | `nps_score` | number | no | Filter by star rating (1–5) | ## Response fields | Field | Type | Description | |---|---|---| | `rating` | number | Average G2 rating | | `reviews_count` | number | Total reviews | | `product_name` | string | Product name | | `pricing_plans` | array | Pricing tiers | | `reviews` | array | User reviews | ## Notes - `nps_score` filters reviews by sentiment. - Accepts product slugs or full G2 URLs. ## Main use cases - Research software tools by analyzing G2 reviews and ratings - Track competitor product reviews on G2 over time - Enrich sales intelligence with G2 product data and social proof - Build software comparison platforms with structured G2 data