Product

The kroger_product data source is designed to retrieve Kroger product pages.

Request samples

In the samples below, we make a request to retrieve product page for product ID 0001111041700 and set store ID to 01100212.

curl 'https://realtime.oxylabs.io/v1/queries' \
--user 'USERNAME:PASSWORD' \
-H 'Content-Type: application/json' \
-d '{
        "source": "kroger_product",
        "product_id": "0001111041700",
        "store_id": "01100212"
    }'

We use synchronous Realtime integration method in our examples. If you would like to use Proxy Endpoint or asynchronous Push-Pull integration, refer to the integration methods section.

Request parameter values

Generic

Basic setup and customization options for scraping Kroger product pages.

ParameterDescriptionDefault Value

source

Sets the scraper.

kroger_product

product_id

13-symbol product ID.

-

store_id

Specify specific store. See the available store ID values here.

-

render

Enables JavaScript rendering when set to html. More info.

-

callback_url

URL to your callback endpoint. More info.

-

user_agent_type

Device type and browser. The full list can be found here.

desktop

- mandatory parameter

Last updated