Skip to main content
POST
/
api
/
betalist
/
makers
/betalist/makers
curl --request POST \
  --url https://api.anysite.io/api/betalist/makers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "maker": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "@type": "BetalistMaker",
    "image": "<string>",
    "profile_url": "<string>",
    "made_count": 123,
    "following_count": 123,
    "made": [],
    "following": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
maker
string
required

Maker handle or full BetaList maker profile URL

Minimum string length: 1
Examples:

"mantasge"

"https://betalist.com/@mantasge"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
name
string
required
@type
string
default:BetalistMaker
image
string | null
profile_url
string | null
made_count
integer | null
following_count
integer | null
made
object[]
following
object[]