Galaxus Product
Extract a Galaxus product page - title, price, images, ratings, delivery, and specifications.
API usage
Add &scraper=galaxus-product to a Crawling API request. URL-encode the target URL in the url parameter.
curl 'https://api.crawlbase.com/?token=YOUR_TOKEN' \
--data-urlencode 'url=https://www.galaxus.ch/en/s1/product/sony-playstation-5-slim-disc-edition-game-consoles-39726201' \
--data-urlencode 'scraper=galaxus-product' -Gfrom crawlbase import CrawlingAPI
api = CrawlingAPI({'token': 'YOUR_TOKEN'})
res = api.get(
'https://www.galaxus.ch/en/s1/product/sony-playstation-5-slim-disc-edition-game-consoles-39726201',
{'scraper': 'galaxus-product'}
)
import json
data = json.loads(res['body'])const { CrawlingAPI } = require('crawlbase');
const api = new CrawlingAPI({ token: 'YOUR_TOKEN' });
const res = await api.get(
'https://www.galaxus.ch/en/s1/product/sony-playstation-5-slim-disc-edition-game-consoles-39726201',
{ scraper: 'galaxus-product' }
);
const data = JSON.parse(res.body);require 'crawlbase'
api = Crawlbase::API.new(token: 'YOUR_TOKEN')
res = api.get('https://www.galaxus.ch/en/s1/product/sony-playstation-5-slim-disc-edition-game-consoles-39726201', scraper: 'galaxus-product')
data = JSON.parse(res.body)Example input URL
The URL passed in the url parameter (URL-decoded for readability):
https://www.galaxus.ch/en/s1/product/sony-playstation-5-slim-disc-edition-game-consoles-39726201Response shape
JSON response body. Field types may be null when the source page omits the value.
Product title.
Canonical product URL.
Price object with
amount and currency.Product image URLs.
Number of reviews.
Average rating.
Estimated delivery time.
Availability label.
Stock and shipping note.
Supplier or brand.
Product description.
Specification key/value pairs.
Return policy.
Warranty terms.
Sample response
{
"title": "Sony Playstation 5 Slim Disc Edition",
"url": "https://www.galaxus.ch/en/s1/product/sony-playstation-5-slim-disc-edition-game-consoles-39726201?tagIds=1",
"price": {
"amount": "475.00",
"currency": "CHF"
},
"images": [
"https://static01.galaxus.com/productimages/sample1.jpeg",
"https://static01.galaxus.com/productimages/sample2.jpeg"
],
"reviewsCount": "837",
"ratings": "4.74",
"deliveryTime": "Delivered Sat, 16.5.",
"deliveryStatusIcon": "available in a few days",
"deliveryNote": "More than 10 pieces in stock | free shipping",
"supplier": "Sony",
"description": "PlayStation 5 console - 1 TB",
"specifications": [
{ "Console": "PS5" },
{ "Game world": "Playstation" }
],
"returnPolicy": "30-day right of return",
"warranty": "24 Months Warranty (Bring-in)"
}