Skip to main content
POST
/
api
/
dune
/
dashboards
/dune/dashboards
curl --request POST \
  --url https://api.anysite.io/api/dune/dashboards \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dashboard": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "DuneDashboard",
    "name": "<string>",
    "slug": "<string>",
    "tags": [],
    "is_private": false,
    "is_archived": false,
    "is_trending": false,
    "star_count": 123,
    "view_count": 123,
    "created_at": "<string>",
    "updated_at": "<string>",
    "author": {
      "@type": "DuneAuthor",
      "id": 123,
      "name": "<string>",
      "alias": "<string>",
      "image": "<string>",
      "is_team": false
    },
    "texts": [],
    "widgets": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dashboard
string
required

Dashboard id (numeric) or '{handle}/{slug}' or a dune.com dashboard URL

Minimum string length: 1
Examples:

"datadashboards/polymarket-overview"

"190393"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:DuneDashboard
name
string | null
slug
string | null
tags
string[]
is_private
boolean
default:false
is_archived
boolean
default:false
star_count
integer | null
view_count
integer | null
created_at
string | null
updated_at
string | null
author
object
texts
string[]
widgets
object[]