Skip to main content
POST
/
api
/
medium
/
users
/medium/users
curl --request POST \
  --url https://api.anysite.io/api/medium/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "username": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@medium_user",
    "alias": "<string>",
    "bio": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "twitter": "<string>",
    "language": "<string>",
    "follower_count": 123,
    "following_count": 123,
    "post_count": 123,
    "tags": [],
    "top_writer_tags": [],
    "created_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
username
string
required

Medium username

Minimum string length: 1
Examples:

"@quincylarson"

"quincylarson"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@medium_user
alias
string | null
bio
string | null
image
string | null
cover
string | null
twitter
string | null
language
string | null
follower_count
integer | null
following_count
integer | null
post_count
integer | null
tags
string[]
top_writer_tags
string[]
created_at
integer | null