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
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | yes | Galaxy Store app page URL (e.g. https://galaxystore.samsung.com/detail/com.netflix.mediaclient) |
| callbackUrl | string | no | Webhook 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"
}
| Field | Type | Description |
|---|---|---|
| id | string | Task ID used to poll for the result |
| status | string | Current task status (parsing, done, error) |
| scope | string | Task type — always galaxy-store-reviews for this endpoint |
| costCredits | number | Credits charged for the task |
| createdAt | string | ISO 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
- Receiving result — poll for the result using the task ID
- Webhook — receive the result via callback instead of polling
- Pricing — see how credits are calculated for this request
