Skip to main content
POST
/
api
/
otzovik
/
users
/otzovik/users
curl --request POST \
  --url https://api.anysite.io/api/otzovik/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "@type": "@otzovik_user",
    "is_official": false,
    "image": "<string>",
    "location": "<string>",
    "karma": 123,
    "review_count": 123,
    "comment_count": 123,
    "subscriber_count": 123,
    "registered_at": "<string>",
    "last_active_at": 123,
    "awards": [],
    "bio": "<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][^/]*)$
Examples:

"Archi1973"

"https://otzovik.com/profile/Archi1973"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
@type
string
default:@otzovik_user
is_official
boolean
default:false
image
string | null
location
string | null
karma
integer | null
review_count
integer | null
comment_count
integer | null
subscriber_count
integer | null
registered_at
string | null
last_active_at
integer | null
awards
string[]
bio
string | null
url
string | null