Skip to main content
POST
/
api
/
note
/
creators
/note/creators
curl --request POST \
  --url https://api.anysite.io/api/note/creators \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "creator": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "key": "<string>",
    "alias": "<string>",
    "@type": "@note_creator_detail",
    "name": "<string>",
    "bio": "<string>",
    "image": "<string>",
    "header_image": "<string>",
    "note_count": 0,
    "magazine_count": 0,
    "follower_count": 0,
    "following_count": 0,
    "is_official": false,
    "is_pro": false,
    "has_store": false,
    "has_circle": false,
    "store_url": "<string>",
    "twitter_nickname": "<string>",
    "external_links": [],
    "custom_domain": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
creator
string
required

Creator urlname or profile URL

Minimum string length: 1
Examples:

"goto_finance"

"https://note.com/goto_finance"

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_creator_detail
name
string | null
bio
string | null
image
string | null
header_image
string | null
note_count
integer
default:0
magazine_count
integer
default:0
follower_count
integer
default:0
following_count
integer
default:0
is_official
boolean
default:false
is_pro
boolean
default:false
has_store
boolean
default:false
has_circle
boolean
default:false
store_url
string | null
twitter_nickname
string | null
custom_domain
string | null