AppMarketScraper

Shopify app reviews

GET
/v1/scrape/shopify/app/{handle}/reviews

Get reviews for a specific Shopify app with pagination

Authorization

ApiKeyAuth
x-api-key<token>

API key for authentication. Get your API key from the dashboard.

In: header

Path Parameters

handle*string

Query Parameters

page?string
sortBy?string
Value in"relevance" | "newest"

Response Body

application/json

application/json

application/json

curl -X GET "https://appmarketscraper.com/v1/scrape/shopify/app/string/reviews"
{
  "success": true,
  "data": {
    "reviews": [
      {
        "app_url": "string",
        "app_name": "string",
        "reviewer": "string",
        "review_created_date": "string",
        "reviewer_location": "string",
        "rating": 0,
        "reviewer_latest_used_date": "string",
        "review_content": "string",
        "review_id": "string"
      }
    ],
    "summary": [
      {
        "label": "string",
        "count": 0
      }
    ],
    "pagination": {
      "hasNextPage": true,
      "totalPages": 0,
      "currentPage": 0
    }
  }
}
{
  "error": "string",
  "message": "string"
}
{
  "error": "string",
  "message": "string"
}