Skip to main content
POST
/
api
/
note
/
creators
/
contents
/note/creators/contents
curl --request POST \
  --url https://api.anysite.io/api/note/creators/contents \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "creator": "<string>",
  "count": 2,
  "timeout": 300,
  "kind": "note"
}
'
[
  {
    "id": 123,
    "key": "<string>",
    "alias": "<string>",
    "title": "<string>",
    "@type": "@note_creator_content",
    "user": {
      "id": 123,
      "key": "<string>",
      "urlname": "<string>",
      "@type": "@note_creator",
      "nickname": "<string>",
      "bio": "<string>",
      "image": "<string>",
      "note_count": 0,
      "following_count": 0,
      "follower_count": 0,
      "twitter_nickname": "<string>",
      "custom_domain": "<string>"
    },
    "tags": [],
    "like_count": 0,
    "comment_count": 0,
    "price": 0,
    "is_limited": false,
    "is_trial": false,
    "can_read": false,
    "is_liked": false,
    "image": "<string>",
    "note_url": "<string>",
    "published_at": "<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"

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
kind
enum<string>
default:note

Content type to list

Available options:
note

Response

Successful Response

id
integer
required
key
string
required
alias
string
required
title
string
required
@type
string
default:@note_creator_content
user
NoteCreator · object
tags
string[]
like_count
integer
default:0
comment_count
integer
default:0
price
integer
default:0
is_limited
boolean
default:false
is_trial
boolean
default:false
can_read
boolean
default:false
is_liked
boolean
default:false
image
string | null
note_url
string | null
published_at
string | null