Dune integration (Data, Developer Tools). Imported from open-connector.
https://api.dune.com/api/v1/queries
| Param | Type | Required | Description |
|---|---|---|---|
| limit | integer | optional | Number of queries to return. Dune defaults to 20. |
| offset | integer | optional | Number of queries to skip. Dune defaults to 0. |
/query/{queryId}
| Param | Type | Required | Description |
|---|---|---|---|
| queryId | integer | required | Unique numeric ID of a Dune query. |
/query/{queryId}/results
| Param | Type | Required | Description |
|---|---|---|---|
| queryId | integer | required | Unique numeric ID of a Dune query. |
| limit | integer | optional | Maximum number of result rows to return. Cannot be combined with sampleCount. |
| offset | integer | optional | Zero-based row offset used for pagination. Cannot be combined with sampleCount. |
| columns | string | optional | Comma-separated column names to return. |
| filters | string | optional | Dune result filter expression. Cannot be combined with sampleCount. |
| sortBy | string | optional | Dune result ordering expression, such as `volume desc` or `project asc, volume … |
| sampleCount | integer | optional | Number of rows to sample uniformly. Cannot be combined with limit, offset, or f… |
| allowPartialResults | boolean | optional | Return a stored partial result when the full result was truncated. |
| ignoreMaxCreditsPerRequest | boolean | optional | Bypass Dune's configured maximum credits per request. This may increase cost. |
/execution/{executionId}/status
| Param | Type | Required | Description |
|---|---|---|---|
| executionId | string | required | Unique ID of a Dune query execution. |
/execution/{executionId}/results
| Param | Type | Required | Description |
|---|---|---|---|
| executionId | string | required | Unique ID of a Dune query execution. |
| limit | integer | optional | Maximum number of result rows to return. Cannot be combined with sampleCount. |
| offset | integer | optional | Zero-based row offset used for pagination. Cannot be combined with sampleCount. |
| columns | string | optional | Comma-separated column names to return. |
| filters | string | optional | Dune result filter expression. Cannot be combined with sampleCount. |
| sortBy | string | optional | Dune result ordering expression, such as `volume desc` or `project asc, volume … |
| sampleCount | integer | optional | Number of rows to sample uniformly. Cannot be combined with limit, offset, or f… |
| allowPartialResults | boolean | optional | Return a stored partial result when the full result was truncated. |
| ignoreMaxCreditsPerRequest | boolean | optional | Bypass Dune's configured maximum credits per request. This may increase cost. |