# Google Shopping Product API (https://www.socialcrawl.dev/platforms/google_shopping/product) > Returns the full detail for a single Google Shopping product: title, description, rating, image gallery, feature bullets, specifications (grouped name/value), and product variations. Pass any one of the opaque identifiers (product_id, gid, or data_docid) returned by /v1/google_shopping/product-search — all three are recommended for accuracy. TL;DR: `GET /v1/google_shopping/product` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `product_id` | no | Google Shopping product_id (from product-search). | | `gid` | no | Google Shopping gid (from product-search). | | `data_docid` | no | Google Shopping data_docid (from product-search). | | `country` | no | DataForSEO location name. Defaults to United States. | | `language` | no | Language code. Defaults to en. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/google_shopping/product" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get full detail from the Google Shopping product API? Send a GET request to /v1/google_shopping/product with one of the ids from product search (product_id, gid, or data_docid). The response is a single canonical Product with description, images, features, specifications, and variations. ### Which id should I pass to the product endpoint? Any one of product_id, gid, or data_docid works, but passing all three (taken from a product-search result) gives the most accurate match. They are returned on every search result as product.id and product.ext. ### What detail fields does the product endpoint return? Beyond the core product fields, the detail response adds a feature-bullet list, a specifications array (grouped name and value pairs), and a variations array (other colors, sizes, or models with their own ids and URLs). ### How much does the product detail endpoint cost? The product endpoint costs 1 credit per call on the standard tier. New accounts get 100 free credits with no card, and a product id that returns nothing is refunded automatically. ### Can I get product specifications and variations? Yes. The specifications array returns grouped attribute name and value pairs (such as color, battery life, or weight), and the variations array lists alternate versions of the product, each with its own id and URL. See the full Google Shopping API: https://www.socialcrawl.dev/platforms/google_shopping ## 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 get Google Shopping product detail with an API - What fields does the SocialCrawl Google Shopping product endpoint return?