Skip to main content
POST
/
api
/
ameblo
/
posts
/
search
/ameblo/posts/search
curl --request POST \
  --url https://api.anysite.io/api/ameblo/posts/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 500,
  "timeout": 300,
  "sort": "relevance",
  "blogger": "horichiemi-official"
}
'
[
  {
    "id": 123,
    "@type": "AmebloSearchPost",
    "alias": "<string>",
    "post_title": "<string>",
    "description": "<string>",
    "blog_title": "<string>",
    "image": "<string>",
    "images": [],
    "hashtags": [],
    "is_official": false,
    "is_top_blogger": false,
    "profile_image": "<string>",
    "post_url": "<string>",
    "created_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Example:

"料理"

count
integer
required

Max result count

Required range: 1 <= x <= 1000
Example:

20

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:relevance

Result ordering: by relevance or newest first

Available options:
relevance,
new
blogger
string | null

Restrict results to a single blogger by Ameba blog ID

Example:

"horichiemi-official"

Response

Successful Response

id
integer
required
@type
string
default:AmebloSearchPost
alias
string | null
post_title
string | null
description
string | null
blog_title
string | null
image
string | null
images
string[]
hashtags
string[]
is_official
boolean
default:false
is_top_blogger
boolean
default:false
profile_image
string | null
post_url
string | null
created_at
integer | null