Skip to main content
POST
/
api
/
niconico
/
users
/niconico/users
curl --request POST \
  --url https://api.anysite.io/api/niconico/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "NiconicoUser",
    "nickname": "<string>",
    "description": "<string>",
    "image": "<string>",
    "cover_image": "<string>",
    "follower_count": 123,
    "followee_count": 123,
    "user_level": 123,
    "is_premium": false,
    "registered_version": "<string>",
    "sns": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Niconico user ID or profile URL

Minimum string length: 1
Examples:

"53610183"

"https://www.nicovideo.jp/user/53610183"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:NiconicoUser
nickname
string | null
description
string | null
image
string | null
cover_image
string | null
follower_count
integer | null
followee_count
integer | null
user_level
integer | null
is_premium
boolean
default:false
registered_version
string | null
sns
object[]