Skip to main content
POST
/
api
/
flamp
/
users
/
reviews
/flamp/users/reviews
curl --request POST \
  --url https://api.anysite.io/api/flamp/users/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "text": "<string>",
    "@type": "@flamp_review",
    "rating": 123,
    "is_recommended": false,
    "created_at": "<string>",
    "edited_at": "<string>",
    "like_count": 0,
    "comment_count": 0,
    "share_count": 0,
    "source": "<string>",
    "is_expert": false,
    "user_id": "<string>",
    "filial_id": "<string>",
    "author_review_count_about_filial": 0,
    "has_photos": false,
    "has_official_answer": false,
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Flamp user id (the numeric id from the profile URL flamp.ru/user{id}, or the full URL)

Minimum string length: 1
Example:

"5697286"

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

Response

Successful Response

id
string
required
text
string
required
@type
string
default:@flamp_review
rating
integer | null
created_at
string | null
edited_at
string | null
like_count
integer
default:0
comment_count
integer
default:0
share_count
integer
default:0
source
string | null
is_expert
boolean
default:false
user_id
string | null
filial_id
string | null
author_review_count_about_filial
integer
default:0
has_photos
boolean
default:false
has_official_answer
boolean
default:false
url
string | null