Skip to main content
POST
/
api
/
google
/
maps
/
users
/
reviews
/google/maps/users/reviews
curl --request POST \
  --url https://api.anysite.io/api/google/maps/users/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300,
  "count": 20
}
'
[
  {
    "id": "<string>",
    "@type": "@google_user_review",
    "rating": 123,
    "text": "<string>",
    "relative_date": "<string>",
    "created_at": 123,
    "language": "<string>",
    "author": {
      "@type": "@google_review_author",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>",
      "profile_url": "<string>",
      "review_count": 123,
      "photo_count": 123,
      "is_local_guide": false
    },
    "images": [],
    "owner_reply": "<string>",
    "owner_reply_at": 123,
    "place": {
      "@type": "@google_user_review_place",
      "feature_id": "<string>",
      "place_id": "<string>",
      "name": "<string>",
      "address": "<string>",
      "rating": 123,
      "review_count": 123,
      "latitude": 123,
      "longitude": 123,
      "locality": "<string>"
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Google Maps contributor ID (numeric)

Minimum string length: 1
Example:

"116272387233618717065"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
count
integer
default:20

Max number of reviews

Required range: 1 <= x <= 200

Response

Successful Response

id
string
required
@type
string
default:@google_user_review
rating
integer | null
text
string | null
relative_date
string | null
created_at
integer | null
language
string | null
author
GoogleReviewAuthor · object
images
string[]
owner_reply
string | null
owner_reply_at
integer | null
place
GoogleUserReviewPlace · object