GET
/
v1
/
materialized-views
curl --request GET \
  --url https://api.dune.com/api/v1/materialized-views \
  --header 'X-Dune-Api-Key: <x-dune-api-key>'
{
  "materialized_views": [
    {
      "id": "<string>",
      "is_private": true,
      "query_id": 123,
      "sql_id": "<string>",
      "table_size_bytes": 123
    }
  ],
  "next_offset": 123
}
  • This endpoint will list all the materialized views under the ownership of the account tied to the API key used

Headers

X-Dune-Api-Key
string
required

API Key for the service

Query Parameters

api_key
string

API Key, alternative to using the HTTP header X-Dune-Api-Key

limit
string

Number of materialized views to return on a page. Default and max 10000

offset
string

Offset used for pagination. Use the value provided on a previous response under next_offset

Response

200
application/json
OK
materialized_views
object[]
next_offset
integer