Skip to main content
POST
/
api
/
ameblo
/
users
/ameblo/users
curl --request POST \
  --url https://api.anysite.io/api/ameblo/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "@type": "AmebloUser",
    "name": "<string>",
    "blog_title": "<string>",
    "blog_description": "<string>",
    "bio": "<string>",
    "image": "<string>",
    "sex": "<string>",
    "birthday": "<string>",
    "blood_type": "<string>",
    "is_official": false,
    "genres": [],
    "official_genre": "<string>",
    "follower_count": 0,
    "instagram_url": "<string>",
    "profile_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

Minimum string length: 1
Examples:

"tsuji-nozomi"

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

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
@type
string
default:AmebloUser
name
string | null
blog_title
string | null
blog_description
string | null
bio
string | null
image
string | null
sex
string | null
birthday
string | null
blood_type
string | null
is_official
boolean
default:false
genres
string[]
official_genre
string | null
follower_count
integer
default:0
instagram_url
string | null
profile_url
string | null
created_at
integer | null
updated_at
integer | null