An open API service indexing awesome lists of open source software.

https://github.com/oxylabs/redbubble-scraper

The Redbubble Scraper API allows users to extract data from the Redbubble platform efficiently. It's a tool ideal for e-commerce data analysis and research.
https://github.com/oxylabs/redbubble-scraper

redbubble redbubble-scraper redbubble-scraper-api redbubble-scraping redbubble-web-scraper

Last synced: 4 months ago
JSON representation

The Redbubble Scraper API allows users to extract data from the Redbubble platform efficiently. It's a tool ideal for e-commerce data analysis and research.

Awesome Lists containing this project

README

          

# Redbubble Scraper API

[![Oxylabs promo code](https://raw.githubusercontent.com/oxylabs/product-integrations/refs/heads/master/Affiliate-Universal-1090x275.png)](https://oxylabs.io/pages/gitoxy?utm_source=877&utm_medium=affiliate&groupid=877&utm_content=redbubble-scraper-github&transaction_id=102f49063ab94276ae8f116d224b67)

[![](https://dcbadge.limes.pink/api/server/Pds3gBmKMH?style=for-the-badge&theme=discord)](https://discord.gg/Pds3gBmKMH) [![YouTube](https://img.shields.io/badge/YouTube-Oxylabs-red?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/@oxylabs)

Oxylabs' [Redbubble Scraper](https://oxylabs.io/products/scraper-api/ecommerce/redbubble?utm_source=github&utm_medium=repositories&utm_campaign=product) (a part of Web Scraper API) is a data gathering solution allowing you to extract real-time information from an Redbubble website effortlessly. This brief guide showcases how Redbubble Scraper works, along with code examples to help you better understand how to use it hassle-free.

### How it works

You can get Redbubble results by providing your own URLs to our service. We can return the HTML, parsed JSON, or Markdown output for any page you like.

#### Python code example

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

```python
import requests
from pprint import pprint

# Structure payload.
payload = {
'source': 'universal',
'url': 'https://www.redbubble.com/g/t-shirts'
}

# 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/redbubble-scraper/tree/main/code%20examples)

#### Output Example
```json
{
"results": [
{
"content": "T-Shirts for Sale | Redbubble ... ",
"created_at": "2025-02-20 12:32:00",
"updated_at": "2025-02-20 12:32:06",
"page": 1,
"url": "https://www.redbubble.com/g/t-shirts",
"job_id": "7165684517376645121",
"status_code": 200
}
]
}
```
With our Redbubble Scraper, you can seamlessly extract public data from any of your targeted Redbubble web pages. Gather the necessary artwork details, such as artist name, medium, price, and reviews. Use these insights to understand market trends and maintain a competitive edge. If you need any assistance, our support team is readily available through live chat or you can email us at hello@oxylabs.io.