Skip to content

The Price Scraper API allows easy retrieval of product pricing data from various online platforms. Access real-time, accurate price info to enhance market research.

oxylabs/price-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Price Scraper API

Oxylabs promo code

Oxylabs’ Price Scraper is a data gathering solution allowing you to extract real-time information from any product page effortlessly. This brief guide explains how a Price Scraper works and provides code examples to understand better how you can use it hassle-free.

How it works

You can get HTML of any pricing result by providing your own URLs to our service.

Python code example

The example below illustrates how you can obtain HTML with pricing information for a sample product page.

import requests
from pprint import pprint

# Structure payload.
payload = {
    'source': 'universal',
    'url': 'https://sandbox.oxylabs.io/products/1'
}

# Get response.
response = requests.request(
    'POST',
    'https://realtime.oxylabs.io/v1/queries',
    auth=('user', 'pass1'),
    json=payload,
)

# Instead of response with job status and results url, this will return the
# JSON response with the result.
pprint(response.json())

Find code examples for other programming languages here

Output Example

{
  "results": [
    {
      "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charSet=\"utf-8\" /><meta name=\"viewport\" content=\"width=de ... </html>",
      "created_at": "2023-12-18 11:30:57",
      "updated_at": "2023-12-18 11:30:59",
      "page": 1,
      "url": "https://sandbox.oxylabs.io/products/1",
      "job_id": "7142476330536312833",
      "status_code": 200
    }
  ]
}

With our specialized Price Scraper tool, you can easily gather public information from any product pages. Collect necessary data like price, customer reviews, or detailed product specifications to monitor and understand the market better and stay ahead of your competitors. If you need any help or have any questions, feel free to reach out to our support team through our live chat service or send us an email at hello@oxylabs.io.

About

The Price Scraper API allows easy retrieval of product pricing data from various online platforms. Access real-time, accurate price info to enhance market research.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published