Skip to main content
POST
/
api
/
snapshot
/
users
/snapshot/users
curl --request POST \
  --url https://api.anysite.io/api/snapshot/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "SnapshotUser",
    "name": "<string>",
    "about": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "twitter": "<string>",
    "github": "<string>",
    "farcaster": "<string>",
    "lens": "<string>",
    "vote_count": 123,
    "proposal_count": 123,
    "created_at": 123,
    "last_vote_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Voter wallet address

Minimum string length: 1
Example:

"0x0579A616689f7ed748dC07692A3F150D44b0CA09"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:SnapshotUser
name
string | null
about
string | null
image
string | null
cover
string | null
twitter
string | null
github
string | null
farcaster
string | null
lens
string | null
vote_count
integer | null
proposal_count
integer | null
created_at
integer | null
last_vote_at
integer | null