Skip to main content
POST
/
api
/
niconico
/
channels
/
search
/niconico/channels/search
curl --request POST \
  --url https://api.anysite.io/api/niconico/channels/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "NiconicoChannel",
    "name": "<string>",
    "alias": "<string>",
    "description": "<string>",
    "owner_name": "<string>",
    "url": "<string>",
    "image": "<string>",
    "price": 123,
    "is_free": true,
    "is_adult": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Channel search keyword

Minimum string length: 1
Example:

"ゲーム"

count
integer
required

Max number of channels

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:NiconicoChannel
name
string | null
alias
string | null
description
string | null
owner_name
string | null
url
string | null
image
string | null
price
number | null
is_free
boolean | null
is_adult
boolean | null