Galaxy Store Reviews Scraper
Galaxy Store Reviews Webhooks
Set callbackUrl in the submit request body to receive the result via webhook instead of polling. When parsing completes, the server sends a POST request to that URL with the result payload.
Submit with Callback
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",
"callbackUrl": "https://my-server.com/webhook/parsing"
}'
Webhook Payload
Make sure your webhook endpoint responds with a
2xxstatus code to acknowledge receipt.
Your endpoint will receive a POST request with the same body as the polling result:
{
"data": [
{
"date": "2026.09.03.",
"text": "Muito bom",
"user": "weto**",
"stars": 5
},
{
"date": "2026.08.31.",
"text": "Minha Netflix tá com defeito no carregamento gostaria de saber o porquê",
"user": "alan**",
"stars": 1
}
],
"success": true
}
Next steps
- Creating a task — back to the submit endpoint reference
- Receiving result — polling alternative to webhooks
