Skip to main content
POST
/
api
/
substack
/
users
/substack/users
curl --request POST \
  --url https://api.anysite.io/api/substack/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "handle": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@substack_user",
    "alias": "<string>",
    "name": "<string>",
    "bio": "<string>",
    "image": "<string>",
    "follower_count": 123,
    "subscriber_count": 123,
    "subdomain_url": "<string>",
    "publications": [],
    "subscriptions": [],
    "lists": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
handle
string
required

Substack author handle

Minimum string length: 1
Examples:

"platformer"

"bigtechnology"

"lenny"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:@substack_user
alias
string | null
name
string | null
bio
string | null
image
string | null
follower_count
integer | null
subscriber_count
integer | null
subdomain_url
string | null
publications
SubstackUserPublication · object[]
subscriptions
SubstackUserPublication · object[]
lists
SubstackUserList · object[]