Skip to main content
POST
/
api
/
pikabu
/
users
/pikabu/users
curl --request POST \
  --url https://api.anysite.io/api/pikabu/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@pikabu_user",
    "id": "<string>",
    "name": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "profile_url": "<string>",
    "about": "<string>",
    "rating": 123,
    "post_count": 123,
    "comment_count": 123,
    "follower_count": 123,
    "following_count": 123,
    "hot_post_count": 123,
    "joined_at": "<string>",
    "rating_place": 123,
    "is_approved": false,
    "is_top_author": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Username or profile URL

Minimum string length: 1
Examples:

"truekpru"

"https://pikabu.ru/@truekpru"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@pikabu_user
id
string | null
name
string | null
alias
string | null
image
string | null
profile_url
string | null
about
string | null
rating
integer | null
post_count
integer | null
comment_count
integer | null
follower_count
integer | null
following_count
integer | null
hot_post_count
integer | null
joined_at
string | null
rating_place
integer | null
is_approved
boolean
default:false
is_top_author
boolean
default:false