Skip to main content
POST
/
api
/
otzovik
/
users
/
reviews
/otzovik/users/reviews
curl --request POST \
  --url https://api.anysite.io/api/otzovik/users/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@otzovik_user_review",
    "title": "<string>",
    "text": "<string>",
    "rating": 123,
    "pros": "<string>",
    "cons": "<string>",
    "published_at": 123,
    "object": {
      "alias": "<string>",
      "@type": "@otzovik_review_object_ref",
      "name": "<string>",
      "url": "<string>"
    },
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

User alias ('Archi1973') or profile page URL

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|//[^\s]+|/?profile/.+|[^/\s][^/]*)$
Example:

"Archi1973"

count
integer
required

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
integer
required
@type
string
default:@otzovik_user_review
title
string | null
text
string | null
rating
integer | null
pros
string | null
cons
string | null
published_at
integer | null
object
OtzovikReviewObjectRef · object
url
string | null