Skip to main content
POST
/
api
/
note
/
notes
/
likes
/note/notes/likes
curl --request POST \
  --url https://api.anysite.io/api/note/notes/likes \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "note": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "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>"
    },
    "@type": "@note_like",
    "created_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
note
string
required

Note key or note URL

Minimum string length: 1
Examples:

"nc4ef44d20443"

"https://note.com/goto_finance/n/nc4ef44d20443"

count
integer
required

Max number of results

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

user
NoteCreator · object
required
@type
string
default:@note_like
created_at
string | null