$ npx scrapering initCreate accountStart for free
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

NameTypeRequiredDescription
requestIdstring (uuid)yesTask 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

FieldTypeDescription
successbooleanWhether the scraping succeeded
dataarrayList of reviews scraped from the app page
data[].datestringReview date in YYYY.MM.DD. format
data[].textstringReview body text
data[].userstringPartially masked username (e.g. alan**)
data[].starsnumberStar rating (05)

Next steps