dune_describe_table
Retrieve column details for any Dune Analytics table to understand data structure and schema organization before querying blockchain datasets.
Instructions
Describe columns for a schema.table on Dune.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schema | Yes | ||
| table | Yes |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"type": "string"
},
"table": {
"type": "string"
}
},
"required": [
"schema",
"table"
],
"type": "object"
}