Skip to main content
POST
/
api
/
ameblo
/
users
/
followers
/ameblo/users/followers
curl --request POST \
  --url https://api.anysite.io/api/ameblo/users/followers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "AmebloFollower",
    "alias": "<string>",
    "name": "<string>",
    "blog_title": "<string>",
    "blog_description": "<string>",
    "image": "<string>",
    "is_official": false,
    "profile_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

Minimum string length: 1
Examples:

"tsuji-nozomi"

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

count
integer
required

Max result count

Required range: x >= 1
Example:

30

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:AmebloFollower
alias
string | null
name
string | null
blog_title
string | null
blog_description
string | null
image
string | null
is_official
boolean
default:false
profile_url
string | null