Galaxy Store Reviews Scraper
Receiving Galaxy Store Reviews Results
Poll this endpoint to retrieve the result of a submitted Galaxy Store reviews scraping task.
Endpoint
GET /api/parsing/v1/result/galaxy-store-reviews/{requestId}
Keep polling until status is no longer "parsing".
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| requestId | string (uuid) | yes | Task ID returned from the submit endpoint |
Example Request
curl https://app.scrapering.com/api/parsing/v1/result/galaxy-store-reviews/YOUR_REQUEST_ID \
--header 'Authorization: Bearer YOUR_API_KEY'
Responses
In progress — task is still being processed:
{
"status": "parsing"
}
Ready — task completed successfully:
{
"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
},
{
"date": "2026.08.17.",
"text": "Era bom, mas agora está horrível assim como todos os outros e cheio de anúncios",
"user": "scha**",
"stars": 1
}
],
"success": true
}
Response Fields
| Field | Type | Description |
|---|---|---|
| success | boolean | Whether the scraping succeeded |
| data | array | List of reviews scraped from the app page |
| data[].date | string | Review date in YYYY.MM.DD. format |
| data[].text | string | Review body text |
| data[].user | string | Partially masked username (e.g. alan**) |
| data[].stars | number | Star rating (0–5) |
Next steps
- Webhook — receive the result via callback instead of polling
- Creating a task — back to the submit endpoint reference
