Skip to main content
POST
/
api
/
flamp
/
reviews
/flamp/reviews
curl --request POST \
  --url https://api.anysite.io/api/flamp/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "review": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "text": "<string>",
    "@type": "@flamp_review_detail",
    "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,
    "images": [],
    "official_answer": {
      "id": "<string>",
      "text": "<string>",
      "@type": "@flamp_official_answer",
      "created_at": "<string>",
      "edited_at": "<string>",
      "business_account_id": "<string>"
    },
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
review
string
required

Flamp review id (the numeric id from the review URL .../otzyv-{id}, or the full URL)

Minimum string length: 1
Example:

"10103629"

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_detail
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
images
string[]
official_answer
FlampOfficialAnswer · object
url
string | null