You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api-reference/overview/billing.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: 'Billing'
3
3
icon: "file-invoice-dollar"
4
4
---
5
5
6
-
Pricing for API is charged along two dimensions. All details can be found at [dune.com/pricing](https://dune.com/pricing)
6
+
Pricing for the API is charged along two dimensions. All details can be found at [dune.com/pricing](https://dune.com/pricing)
7
7
8
8
<Note>
9
9
If your execution fails, then no credits are charged. If you execute a query but never pull the results, you are only charged for the execution.
@@ -17,7 +17,7 @@ If your execution fails, then no credits are charged. If you execute a query but
17
17
| Queries Endpoint | Available on Plus and Premium |
18
18
| Webhooks (Alerts) | 1 on Free <br></br> 5 on Plus <br></br> 50 on Premium |
19
19
20
-
A datapoint applies to query results after the query is run, and can in most cases be thought of `rows * columns` with an additional limit of 100 avg bytes per cell in a set of results. This can be expressed as:
20
+
A datapoint applies to query results after the query is run, and can in most cases be thought of as `rows * columns` with an additional limit of 100 avg bytes per cell in a set of results. This can be expressed as:
Copy file name to clipboardExpand all lines: api-reference/overview/faq.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ There are no major performance differences within a specific performance tier wh
9
9
10
10
The Dune API gives you programmatic access to the capabilities and data sets that can already be accessed from the Dune web app. The same queries and results exist in the web app, even if created/executed from the API (and vice versa).
11
11
12
-
#### What are Sim APIs and how do they differ from the Dune API?
12
+
#### What are Sim APIs and how do they differ from the Dune API?
13
13
14
14
Sim APIs, formerly Echo, are a separate, developer-focused product by Dune, providing realtime access to EVM and SVM blockchain data.
15
15
They are designed for building apps like realtime wallets and AI agents.
@@ -64,7 +64,7 @@ Yes!
64
64
65
65
The results storage period can be found on the API response on the “expires_at” field in the execution status and results body.
66
66
67
-
#### How do I import Dune data into a google sheet?
67
+
#### How do I import Dune data into a Google sheet?
68
68
69
-
Use "Import Data" to import your CSV results into a google sheet using "api_key" as a param. (We advise against doing this any public document where your API key can be viewed and compromised.)
69
+
Use "Import Data" to import your CSV results into a Google sheet using "api_key" as a param. (We advise against doing this in any public document where your API key can be viewed and compromised.)
70
70
`=importData("https://api.dune.com/api/v1/query/{{query_id}}/results/csv?api_key={{api_key}}")`. Then, [schedule a query execution](https://dune.com/docs/app/query-editor/query-scheduler/?h=scheduling) to have your results regularly updated on a set schedule.
Copy file name to clipboardExpand all lines: api-reference/overview/rate-limits.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,4 +44,4 @@ For example, on the Free plan, you have a low limit of 15 requests per minute an
44
44
45
45
**Data Return Limit**
46
46
47
-
Dune internally has a maximum query result size limit (which currently is 8GB, but subject to increase in the future). If your query yields more than 8GB of data, the result will be truncated in storage. In such cases, pulling the result data (using pagination) but without specifying `allow_partial_results` set to true will trigger an error message: "error": "Partial Result, please request with 'allows_partial_results=true'". If you wish to retrieve partial results, you can pass the parameter `allow_partial_results=true`. But please make sure you indeed want to fetch the truncated result.
47
+
Dune internally has a maximum query result size limit (which currently is 8GB, but subject to increase in the future). If your query yields more than 8GB of data, the result will be truncated in storage. In such cases, pulling the result data (using pagination) but without specifying `allow_partial_results` set to true will trigger an error message: "error": "Partial Result, please request with 'allow_partial_results=true'". If you wish to retrieve partial results, you can pass the parameter `allow_partial_results=true`. But please make sure you indeed want to fetch the truncated result.
Copy file name to clipboardExpand all lines: api-reference/overview/sdks.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ icon: "sd-cards"
7
7
8
8
We currently support a [Python SDK](https://github.com/duneanalytics/dune-client) for working with our API. You'll find `Python SDK` snippets on all endpoint pages, if you want to go deeper into the code then check out [these files](https://github.com/duneanalytics/dune-client/tree/main/dune_client/api).
9
9
10
-
To still the SDK, run the following command in your terminal:
10
+
To install the SDK, run the following command in your terminal:
Copy file name to clipboardExpand all lines: api-reference/overview/troubleshooting.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Dune uses conventional HTTP response codes to indicate the success or failure of
17
17
| 429 | Too Many Requests | Too many requests hit the API too quickly (rate limited). |
18
18
| 500 | Server Errors | Generic internal server error. |
19
19
20
-
For specific error code information, please refer to each of the endpoint itself. Here we list some common errors and suggest possible solution:
20
+
For specific error code information, please refer to each of the endpoints themselves. Here we list some common errors and suggest possible solutions:
21
21
22
22
#### Invalid API key
23
23
```json
@@ -34,7 +34,7 @@ You did not input a valid API key. You can go generate a new key and make sure y
34
34
"error": "not found: Query not found or private"
35
35
}
36
36
```
37
-
When you perform an action to a private query your API key doesn't have access to, you will get this error. If you indeed own this query, please check the context of the API key and the query owner are the same.
37
+
When you perform an action on a private query your API key doesn't have access to, you will get this error. If you indeed own this query, please check that the context of the API key and the query owner are the same.
| connected_wallets | List of wallet addresses connected to the user | array(string)|
25
25
| L14D_active_tier | The active tier of the connected wallet user over the last 14 days. Possible values are "vip", "influencer", "star", "active", "npc", and "not active" | string |
26
26
| top_channels | Top 3 channels where connected wallet user is active | array(string) |
27
-
| top_domains | Top 3 domains frequented casted by the connected wallet user | array(string) |
27
+
| top_domains | Top 3 domains frequently casted by the connected wallet user | array(string) |
28
28
| top_engagers | Top 3 users who engage with this connected wallet user | array(string) |
29
29
| num_followers | Number of followers the connected wallet user has on Farcaster | integer |
30
30
| num_onchain_txns | Number of on-chain transactions performed by the connected wallet user | integer |
Copy file name to clipboardExpand all lines: api-reference/projects/introduction.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Utilize Dune's dedicated APIs to access specific project, protocol, or topic dat
7
7
8
8
-**JSON Format**: All endpoints deliver JSON-formatted data for straightforward integration.
9
9
-**Instant Access**: Begin immediately by [creating a free account](https://dune.com/auth/register) and [obtain an API key](.././overview/authentication).
10
-
-**Expansive Data Ecosystem**: Enhance your projects by connecting with an extensive range of on-chain and off-chain data, from [Farcaster](.././farcaster/introduction) to [DEX](.././dex/endpoint/dex_pair) and more. Build alongside with our vibrant community.
10
+
-**Expansive Data Ecosystem**: Enhance your projects by connecting with an extensive range of onchain and offchain data, from [Farcaster](.././farcaster/introduction) to [DEX](.././dex/endpoint/dex_pair) and more. Build alongside with our vibrant community.
11
11
12
12
13
13
<CardGroupcols={2}>
@@ -16,7 +16,7 @@ Utilize Dune's dedicated APIs to access specific project, protocol, or topic dat
16
16
icon="road-bridge"
17
17
href="/api-reference/projects/endpoint/linea_lxp"
18
18
>
19
-
Get LXP balance for wallet, along with social and onchain behavior stats
19
+
Get LXP balance for wallet, along with social and on-chain behavior stats
0 commit comments