Skip to main content
POST
/
api
/
ameblo
/
posts
/
reactions
/ameblo/posts/reactions
curl --request POST \
  --url https://api.anysite.io/api/ameblo/posts/reactions \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "post": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "AmebloReaction",
    "alias": "<string>",
    "like_count": 0,
    "comment_count": 0,
    "reblog_count": 0,
    "post_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Ameba blog ID (URL slug) or blog URL that owns the entries

Minimum string length: 1
Example:

"ebizo-ichikawa"

post
string
required

One or more numeric entry IDs or entry URLs, comma-separated

Minimum string length: 1
Examples:

"12971779160"

"12971779160,12971660343"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:AmebloReaction
alias
string | null
like_count
integer
default:0
comment_count
integer
default:0
reblog_count
integer
default:0
post_url
string | null