Skip to content

The Xing Scraper API allows developers to extract and integrate comprehensive profile data from the Xing network. It provides reliable and efficient solutions for data mining tasks.

Notifications You must be signed in to change notification settings

oxylabs/xing-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Xing Scraper API

Oxylabs promo code

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

How it works

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

Python code example

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

import requests
from pprint import pprint

# Structure payload.
payload = {
    'source': 'universal',
    'url': 'https://www.xing.com/jobs/search?benefit=1.795d28'
}

# 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>\n<html lang=\"de\" class=\"light\">\n  <head>\n    <link rel=\"prefetch\" href=\"/assets/jobs- ... </html>",
      "created_at": "2023-12-18 10:42:32",
      "updated_at": "2023-12-18 10:42:35",
      "page": 1,
      "url": "https://www.xing.com/jobs/search?benefit=1.795d28",
      "job_id": "7142464145147876353",
      "status_code": 200
    }
  ]
}

With our Xing Scraper, you can seamlessly extract public data from any Xing profile. Collect necessary professional details, such as job history, skills or endorsements, to understand the job market and gain competitive advantage. If you need assistance or have any questions, our support team is available through live chat or you can email us at hello@oxylabs.io.

About

The Xing Scraper API allows developers to extract and integrate comprehensive profile data from the Xing network. It provides reliable and efficient solutions for data mining tasks.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published