Skip to content

The Worten Scraper API on GitHub is a robust tool for extracting product data from Worten, a major Portugal-based online retailer. It's ideal for e-commerce, price comparison, and data analysis.

Notifications You must be signed in to change notification settings

oxylabs/worten-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

Worten Scraper API

Oxylabs promo code

Oxylabs' Worten Scraper is a data gathering solution allowing you to extract real-time information from an Worten website effortlessly. This brief guide showcases how Worten Scraper works, along with code examples to help you better understand how to use it hassle-free.

How it works

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

Python code example

The example below illustrates how you can get HTML of Worten page.

import requests
from pprint import pprint

# Structure payload.
payload = {
    'source': 'universal',
    'url': 'https://www.worten.pt/promocoes/pequenos-eletrodomesticos'
}

# 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=\"pt-PT\" data-capo=\"\"><head><meta charset=\"utf-8\">\n<meta name=\"viewport\" co ... </html>",
      "created_at": "2024-02-20 12:42:22",
      "updated_at": "2024-02-20 12:42:24",
      "page": 1,
      "url": "https://www.worten.pt/promocoes/pequenos-eletrodomesticos",
      "job_id": "7165687125755597825",
      "status_code": 200
    }
  ]
}

Using our special Worten Scraper, you can conveniently pull out public data from any desired Worten web page. Gather all pertinent product data, such as the trending appliances, updated gadget details, or the opinions of tech enthusiasts to better understand the market dynamics and outmaneuver your rivals. In case of any queries, reach out to our dedicated support team through live chat or send them an email at [email protected].

About

The Worten Scraper API on GitHub is a robust tool for extracting product data from Worten, a major Portugal-based online retailer. It's ideal for e-commerce, price comparison, and data analysis.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published