Skip to main content
POST
/
api
/
irecommend
/
users
/irecommend/users
curl --request POST \
  --url https://api.anysite.io/api/irecommend/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "@type": "@irecommend_user",
    "name": "<string>",
    "image": "<string>",
    "is_online": false,
    "review_count": 123,
    "follower_count": 123,
    "like_count": 123,
    "member_for": "<string>",
    "categories": [],
    "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 ('verbena14') or profile page URL

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|//[^\s]+|/?(?:users/)?[A-Za-z0-9][A-Za-z0-9_.@\-/]*)$
Examples:

"verbena14"

"https://irecommend.ru/users/verbena14"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
@type
string
default:@irecommend_user
name
string | null
image
string | null
is_online
boolean
default:false
review_count
integer | null
follower_count
integer | null
like_count
integer | null
member_for
string | null
categories
IrecommendUserCategory · object[]
url
string | null