$ npx scrapering initCreate accountStart for free
Galaxy Store Reviews Scraper

Creating a Galaxy Store Reviews Scraping Task

Submit a task to scrape user reviews for an app on the Samsung Galaxy Store.

Requires the galaxy-store-reviews scope on your API key.

Endpoint

POST /api/parsing/v1/galaxy-store-reviews

Request Body

NameTypeRequiredDescription
urlstringyesGalaxy Store app page URL (e.g. https://galaxystore.samsung.com/detail/com.netflix.mediaclient)
callbackUrlstringnoWebhook URL to POST result when done

Example Request

curl -X POST 'https://app.scrapering.com/api/parsing/v1/galaxy-store-reviews' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -d '{"url":"https://galaxystore.samsung.com/detail/com.netflix.mediaclient"}'

Example Response

{
  "id": "ac9c7911-b32c-4890-a850-227003ee2d35",
  "status": "parsing",
  "scope": "galaxy-store-reviews",
  "costCredits": 1,
  "createdAt": "2026-09-03T10:00:00.000Z"
}
FieldTypeDescription
idstringTask ID used to poll for the result
statusstringCurrent task status (parsing, done, error)
scopestringTask type — always galaxy-store-reviews for this endpoint
costCreditsnumberCredits charged for the task
createdAtstringISO 8601 timestamp of when the task was created

The task is processed asynchronously. Use the id to poll for the result or set callbackUrl to receive a webhook when parsing completes.

Next steps