Skip to content

Superpages Scraper API is a robust product designed for extracting data from Superpages. It provides efficient tools for users to mine valuable business information, enhancing data-analytics tasks.

oxylabs/superpages-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Superpages Scraper API

Oxylabs promo code

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

How it works

You can get Superpages 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 Superpages page.

import requests
from pprint import pprint

# Structure payload.
payload = {
    'source': 'universal_ecommerce',
    'url': 'https://www.superpages.com/oakland-ca/auto-services'
}

# 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 name=\"charset\" content=\"utf-8\"><meta http-equiv=\"X-UA-Com ... </html>",
      "created_at": "2024-02-20 12:35:02",
      "updated_at": "2024-02-20 12:35:06",
      "page": 1,
      "url": "https://www.superpages.com/oakland-ca/auto-services",
      "job_id": "7165685280832227329",
      "status_code": 200
    }
  ]
}

With our Superpages Scraper, you can seamlessly obtain public data from any Superpages webpage. Gather vital business information like contact details, business profiles, or customer ratings to understand your market landscape and stay competitive. If you need assistance, reach out to our support team directly through live chat or send an email to hello@oxylabs.io.

About

Superpages Scraper API is a robust product designed for extracting data from Superpages. It provides efficient tools for users to mine valuable business information, enhancing data-analytics tasks.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published