URL

You can get Kroger results by providing your own URLs to our service. We can return the HTML for any Kroger page you like.

Request samples

The sample below demonstrates how to retrieve a Kroger search results page based on a specific product query, price range, and store location.

curl 'https://realtime.oxylabs.io/v1/queries' \
--user 'USERNAME:PASSWORD' \
-H 'Content-Type: application/json' \
-d '{
        "source": "kroger",
        "url": "https://www.kroger.com/search?query=adidas&price=10.00-15.00",
        "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 marketplace.

ParameterDescriptionDefault Value

source

Sets the scraper.

kroger

url

Direct URL (link) to any page.

-

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