Log in

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' -G
from 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-39726201

Response shape

JSON response body. Field types may be null when the source page omits the value.

title
string | null
Product title.
url
string
Canonical product URL.
price
object
Price object with amount and currency.
images
array
Product image URLs.
reviewsCount
string
Number of reviews.
ratings
string
Average rating.
deliveryTime
string
Estimated delivery time.
deliveryStatusIcon
string | null
Availability label.
deliveryNote
string
Stock and shipping note.
supplier
string | null
Supplier or brand.
description
string | null
Product description.
specifications
array
Specification key/value pairs.
returnPolicy
string | null
Return policy.
warranty
string | null
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)"
}