# Google Shopping Sellers API (https://www.socialcrawl.dev/platforms/google_shopping/sellers) > Returns the list of sellers/offers for a single Google Shopping product: seller name, domain, itemised price (base/tax/shipping/total/currency), rating, product condition, availability, and any special-offer annotation. Pass any one of the opaque identifiers (product_id, gid, or data_docid) from product-search. TL;DR: `GET /v1/google_shopping/sellers` 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 | Country as an ISO code ('US', 'GB') or full name ('United States'). Defaults to United States. | | `language` | no | Language code. Defaults to en. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/google_shopping/sellers" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I use the Google Shopping sellers API to list offers for a product? Send a GET request to /v1/google_shopping/sellers with one of the product ids from search (product_id, gid, or data_docid). The response is a unified SellerList with each seller's name, domain, price breakdown, rating, condition, and availability. ### What price data do Google Shopping sellers return? Each seller carries an itemised price (base, tax, shipping, and total with currency) so you can compare the real landed cost across retailers, not just the headline number, for the same product. ### What fields does each seller offer include? Every seller includes the seller name and domain, the offer URL, the itemised price object, a rating (average and count), the product condition (new, used, refurbished), and availability, all in the shared seller schema. ### How much does the Google Shopping sellers endpoint cost? Sellers cost 1 credit per call on the standard tier. New accounts get 100 free credits with no credit card, and a product id that returns no sellers is refunded automatically. ### Can I use this to compare prices across stores? Yes. Because each offer carries the seller domain plus a base, tax, shipping, and total breakdown, you can build a price-comparison view for one product across every retailer Google Shopping lists. 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 does the SocialCrawl Google Shopping sellers API return itemised pricing across retailers? - How to compare prices across retailers with the Google Shopping sellers API