dune_find_tables
Search Dune Analytics schemas and list relevant tables to discover blockchain data sources for analysis and query building.
Instructions
Search schemas and optionally list tables.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | No | ||
| schema | No | ||
| limit | No |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"limit": {
"default": 50,
"type": "integer"
},
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"type": "object"
}