Skip to main content
POST
/
api
/
dune
/
users
/dune/users
curl --request POST \
  --url https://api.anysite.io/api/dune/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "DuneUser",
    "name": "<string>",
    "alias": "<string>",
    "bio": "<string>",
    "image": "<string>",
    "created_at": "<string>",
    "first_query_at": "<string>",
    "dashboard_count": 123,
    "star_count": 123,
    "view_count": 123,
    "fork_count": 123,
    "reputation_score": 123,
    "twitter": "<string>",
    "github": "<string>",
    "farcaster": "<string>",
    "discord": "<string>",
    "telegram": "<string>",
    "ethereum_address": "<string>",
    "is_available_for_gigs": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

User handle (e.g. 'hildobby') or a dune.com/{handle} profile URL

Example:

"hildobby"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:DuneUser
name
string | null
alias
string | null
bio
string | null
image
string | null
created_at
string | null
first_query_at
string | null
dashboard_count
integer | null
star_count
integer | null
view_count
integer | null
fork_count
integer | null
reputation_score
number | null
twitter
string | null
github
string | null
farcaster
string | null
discord
string | null
telegram
string | null
ethereum_address
string | null
is_available_for_gigs
boolean
default:false