Google Shopping Stores
Page through every store selling a product — seller name, price, shipping, total, and rating — using a catalog_id and next_page_token from the Product endpoint.
POST/api/v2/google/shopping/product/stores
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsoncatalog_idstringrequiredSame catalog_id used on the Product call.
Example: 7310953537322941042
next_page_tokenstringrequiredContinuation cursor (stores_next_page_token) from a prior response.
Example: eyJ2Ijoic3RvcmVz…
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.google.shopping_stores("7310953537322941042", "eyJ2Ijoic3RvcmVz…")
print(results)Response
"catalog_id": "7310953537322941042",
"next_page_token": "eyJzb3JpIjozLCJtbm8iOjEwfQ"
},
],
"next_page_token": "eyJzb3JpIjozLCJtbm8iOjEwfQ"
},
"credits_used": 1,
"credits_remaining": 49
}