https://github.com/oxylabs/zara-scraper
The Zara Scraper API is a powerful tool designed for developers. It enables swift and easy extraction of product details, price, and availability from Zara's online store for various applications.
https://github.com/oxylabs/zara-scraper
api-zara zara zara-api zara-scraper zara-scraper-api zara-scraping zara-web-scraper
Last synced: 4 months ago
JSON representation
The Zara Scraper API is a powerful tool designed for developers. It enables swift and easy extraction of product details, price, and availability from Zara's online store for various applications.
- Host: GitHub
- URL: https://github.com/oxylabs/zara-scraper
- Owner: oxylabs
- Created: 2023-12-18T10:37:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-11T13:14:32.000Z (11 months ago)
- Last Synced: 2025-04-09T02:42:00.090Z (9 months ago)
- Topics: api-zara, zara, zara-api, zara-scraper, zara-scraper-api, zara-scraping, zara-web-scraper
- Language: Java
- Homepage:
- Size: 10.7 KB
- Stars: 38
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Zara Scraper API
[](https://oxylabs.io/pages/gitoxy?utm_source=877&utm_medium=affiliate&groupid=877&utm_content=zara-scraper-github&transaction_id=102f49063ab94276ae8f116d224b67)
[](https://discord.gg/Pds3gBmKMH) [](https://www.youtube.com/@oxylabs)
Oxylabs’ [Zara Scraper](https://oxylabs.io/products/scraper-api/ecommerce/zara?utm_source=github&utm_medium=repositories&utm_campaign=product) is a data gathering solution allowing you to extract real-time information from an Zara website effortlessly. This brief guide explains how an Zara Scraper works and provides code examples to understand better how you can use it hassle-free.
### How it works
You can get Zara results by providing your own URLs to our service. We can return the HTML for any Zara page you like.
#### Python code example
The example below illustrates how you can get HTML of Zara page.
```python
import requests
from pprint import pprint
# Structure payload.
payload = {
'source': 'universal',
'url': 'https://www.zara.com/ww/en/woman-blazers-l1055.html?v1=2290737'
}
# 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**](https://github.com/oxylabs/zara-scraper/tree/main/code%20examples)
#### Output Example
```json
{
"results": [
{
"content": " ",
"created_at": "2023-12-18 10:37:00",
"updated_at": "2023-12-18 10:37:02",
"page": 1,
"url": "https://www.zara.com/ww/en/woman-blazers-l1055.html?v1=2290737",
"job_id": "7142462752039115777",
"status_code": 200
}
]
}
```
With our Zara Scraper, you can seamlessly gather data exclusive to Zara web pages. Take hold of crucial fashion detail, including clothing prices, user reviews, and garment descriptions, to evaluate the fashion market and stay on top of your competition. For any queries or troubleshooting guidance, feel free to connect with our support team through live chat or drop us an email at hello@oxylabs.io.