Skip to main content
POST
/
api
/
ameblo
/
posts
/ameblo/posts
curl --request POST \
  --url https://api.anysite.io/api/ameblo/posts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "post": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "AmebloPost",
    "blog_id": 123,
    "user_id": 123,
    "alias": "<string>",
    "post_title": "<string>",
    "text": "<string>",
    "description": "<string>",
    "theme_id": 123,
    "theme_name": "<string>",
    "image": "<string>",
    "images": [],
    "hashtags": [],
    "is_pr": false,
    "is_reblog": false,
    "like_count": 0,
    "comment_count": 0,
    "reblog_count": 0,
    "post_url": "<string>",
    "created_at": 123,
    "updated_at": 123
  }
]

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 post

Minimum string length: 1
Examples:

"tsuji-nozomi"

"https://ameblo.jp/tsuji-nozomi/"

post
string
required

Numeric entry ID or full entry URL

Examples:

"12970909880"

"https://ameblo.jp/tsuji-nozomi/entry-12970909880.html"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:AmebloPost
blog_id
integer | null
user_id
integer | null
alias
string | null
post_title
string | null
text
string | null
description
string | null
theme_id
integer | null
theme_name
string | null
image
string | null
images
string[]
hashtags
string[]
is_pr
boolean
default:false
is_reblog
boolean
default:false
like_count
integer
default:0
comment_count
integer
default:0
reblog_count
integer
default:0
post_url
string | null
created_at
integer | null
updated_at
integer | null