Skip to main content
POST
/
api
/
note
/
creators
/
search
/note/creators/search
curl --request POST \
  --url https://api.anysite.io/api/note/creators/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "key": "<string>",
    "alias": "<string>",
    "@type": "@note_search_creator",
    "name": "<string>",
    "bio": "<string>",
    "image": "<string>",
    "follower_count": 0,
    "is_official": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query

Minimum string length: 1
Example:

"投資"

count
integer
required

Max result count

Required range: x >= 1
Example:

20

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
key
string
required
alias
string
required
@type
string
default:@note_search_creator
name
string | null
bio
string | null
image
string | null
follower_count
integer
default:0
is_official
boolean
default:false