Skip to main content
POST
/
api
/
dune
/
teams
/dune/teams
curl --request POST \
  --url https://api.anysite.io/api/dune/teams \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "team": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "DuneTeam",
    "name": "<string>",
    "alias": "<string>",
    "bio": "<string>",
    "description": "<string>",
    "image": "<string>",
    "brand_color": "<string>",
    "url": "<string>",
    "tags": [],
    "dashboard_count": 123,
    "star_count": 123,
    "reputation_score": 123,
    "twitter": "<string>",
    "farcaster": "<string>",
    "telegram": "<string>",
    "discord": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
team
string
required

Team handle (e.g. 'datadashboards') or a dune.com/{handle} URL

Example:

"dune"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:DuneTeam
name
string | null
alias
string | null
bio
string | null
description
string | null
image
string | null
brand_color
string | null
url
string | null
tags
string[]
dashboard_count
integer | null
star_count
integer | null
reputation_score
number | null
twitter
string | null
farcaster
string | null
telegram
string | null
discord
string | null