Skip to main content
POST
/
api
/
samsunggalaxy
/
apps
/
reviews
/samsunggalaxy/apps/reviews
curl --request POST \
  --url https://api.anysite.io/api/samsunggalaxy/apps/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "package": "<string>",
  "count": 2,
  "timeout": 300,
  "country": "us"
}
'
[
  {
    "@type": "SamsunggalaxyReview",
    "author": "<string>",
    "text": "<string>",
    "rating": 123,
    "created_at": "<string>",
    "updated_at": "<string>",
    "is_seller_reply": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
package
string
required

Android package name, or a Galaxy Store app URL

Minimum string length: 1
Examples:

"com.spotify.music"

"https://galaxystore.samsung.com/detail/com.spotify.music"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
country
enum<string>
default:us

Storefront country

Available options:
us,
gb,
de,
fr,
it,
es,
nl,
kr,
jp,
in,
br,
ca,
au,
tr,
pl,
id,
th,
vn,
ph,
my

Response

Successful Response

@type
string
default:SamsunggalaxyReview
author
string | null
text
string | null
rating
number | null
created_at
string | null
updated_at
string | null
is_seller_reply
boolean
default:false