@apteva/integrations 0.3.23 → 0.3.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/apps/alchemy.json +120 -0
- package/src/apps/alternative-me.json +55 -0
- package/src/apps/apollo.json +3 -3
- package/src/apps/apteva-cloud.json +259 -0
- package/src/apps/ashby.json +1 -1
- package/src/apps/assemblyai.json +1 -1
- package/src/apps/bybit.json +192 -0
- package/src/apps/callrail.json +1 -1
- package/src/apps/cartesia.json +3 -3
- package/src/apps/castbase.json +0 -5
- package/src/apps/chargebee.json +1 -1
- package/src/apps/clicksend.json +1 -1
- package/src/apps/coingecko.json +202 -0
- package/src/apps/composio.json +8 -3
- package/src/apps/confluence.json +1 -1
- package/src/apps/debank.json +130 -0
- package/src/apps/defillama.json +145 -0
- package/src/apps/dune.json +115 -0
- package/src/apps/dux-soup.json +1 -1
- package/src/apps/dydx.json +151 -0
- package/src/apps/elevenlabs.json +59 -10
- package/src/apps/gravity-forms.json +2 -2
- package/src/apps/harmonic.json +2 -2
- package/src/apps/helpscout.json +3 -3
- package/src/apps/heyreach.json +3 -3
- package/src/apps/hunter.json +5 -4
- package/src/apps/hyperliquid.json +129 -0
- package/src/apps/jupiter-dex.json +91 -0
- package/src/apps/learning-platform.json +3 -3
- package/src/apps/luma.json +3 -3
- package/src/apps/lunarcrush.json +96 -0
- package/src/apps/messari.json +145 -0
- package/src/apps/moralis.json +196 -0
- package/src/apps/murf-ai.json +340 -0
- package/src/apps/okx.json +183 -0
- package/src/apps/oneinch.json +94 -0
- package/src/apps/paidkit.json +0 -5
- package/src/apps/paraswap.json +88 -0
- package/src/apps/playht.json +200 -0
- package/src/apps/saltedge.json +8 -3
- package/src/apps/santiment.json +49 -0
- package/src/apps/supabase.json +3 -3
- package/src/apps/thegraph.json +59 -0
- package/src/apps/trading212.json +1 -1
- package/src/apps/wellsaid.json +227 -0
- package/src/apps/zapper.json +82 -0
- package/src/apps/zerox.json +93 -0
package/src/apps/cartesia.json
CHANGED
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
"base_url": "https://api.cartesia.ai",
|
|
16
16
|
"auth": {
|
|
17
17
|
"types": [
|
|
18
|
-
"
|
|
18
|
+
"api_key"
|
|
19
19
|
],
|
|
20
20
|
"headers": {
|
|
21
|
-
"
|
|
21
|
+
"X-API-Key": "{{api_key}}"
|
|
22
22
|
},
|
|
23
23
|
"credential_fields": [
|
|
24
24
|
{
|
|
25
|
-
"name": "
|
|
25
|
+
"name": "api_key",
|
|
26
26
|
"label": "Api Key",
|
|
27
27
|
"description": "Cartesia API key (from your Cartesia dashboard)"
|
|
28
28
|
}
|
package/src/apps/castbase.json
CHANGED
package/src/apps/chargebee.json
CHANGED
package/src/apps/clicksend.json
CHANGED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "coingecko",
|
|
3
|
+
"name": "CoinGecko",
|
|
4
|
+
"description": "Comprehensive crypto market data — prices, market caps, volumes, trending coins, exchange data, DeFi stats for 14,000+ cryptocurrencies.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=coingecko.com&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"crypto",
|
|
8
|
+
"market-data",
|
|
9
|
+
"prices",
|
|
10
|
+
"defi",
|
|
11
|
+
"nft",
|
|
12
|
+
"trending"
|
|
13
|
+
],
|
|
14
|
+
"base_url": "https://api.coingecko.com/api/v3",
|
|
15
|
+
"auth": {
|
|
16
|
+
"types": [
|
|
17
|
+
"api_key"
|
|
18
|
+
],
|
|
19
|
+
"headers": {
|
|
20
|
+
"x-cg-demo-key": "{{api_key}}"
|
|
21
|
+
},
|
|
22
|
+
"credential_fields": [
|
|
23
|
+
{
|
|
24
|
+
"name": "api_key",
|
|
25
|
+
"label": "Api_key",
|
|
26
|
+
"description": "CoinGecko API key (free demo key from https://www.coingecko.com/en/api/pricing)"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"tools": [
|
|
31
|
+
{
|
|
32
|
+
"name": "get_price",
|
|
33
|
+
"description": "Get current price for one or more coins in any currency. Supports market cap, volume, and 24h change.",
|
|
34
|
+
"method": "GET",
|
|
35
|
+
"path": "/simple/price",
|
|
36
|
+
"input_schema": {
|
|
37
|
+
"type": "object",
|
|
38
|
+
"properties": {
|
|
39
|
+
"ids": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "Comma-separated coin IDs (e.g., bitcoin,ethereum,solana)"
|
|
42
|
+
},
|
|
43
|
+
"vs_currencies": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"description": "Comma-separated currencies (e.g., usd,eur,btc)",
|
|
46
|
+
"default": "usd"
|
|
47
|
+
},
|
|
48
|
+
"include_market_cap": {
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"default": true
|
|
51
|
+
},
|
|
52
|
+
"include_24hr_vol": {
|
|
53
|
+
"type": "boolean",
|
|
54
|
+
"default": true
|
|
55
|
+
},
|
|
56
|
+
"include_24hr_change": {
|
|
57
|
+
"type": "boolean",
|
|
58
|
+
"default": true
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"required": [
|
|
62
|
+
"ids"
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "get_coin",
|
|
68
|
+
"description": "Get comprehensive data for a coin — description, links, market data, community stats, developer stats, and tickers.",
|
|
69
|
+
"method": "GET",
|
|
70
|
+
"path": "/coins/{id}",
|
|
71
|
+
"input_schema": {
|
|
72
|
+
"type": "object",
|
|
73
|
+
"properties": {
|
|
74
|
+
"id": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"description": "Coin ID (e.g., bitcoin, ethereum, solana, uniswap)"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"required": [
|
|
80
|
+
"id"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "get_markets",
|
|
86
|
+
"description": "Get top coins by market cap with price, volume, and sparkline data.",
|
|
87
|
+
"method": "GET",
|
|
88
|
+
"path": "/coins/markets",
|
|
89
|
+
"input_schema": {
|
|
90
|
+
"type": "object",
|
|
91
|
+
"properties": {
|
|
92
|
+
"vs_currency": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"default": "usd"
|
|
95
|
+
},
|
|
96
|
+
"order": {
|
|
97
|
+
"type": "string",
|
|
98
|
+
"enum": [
|
|
99
|
+
"market_cap_desc",
|
|
100
|
+
"market_cap_asc",
|
|
101
|
+
"volume_desc",
|
|
102
|
+
"volume_asc"
|
|
103
|
+
],
|
|
104
|
+
"default": "market_cap_desc"
|
|
105
|
+
},
|
|
106
|
+
"per_page": {
|
|
107
|
+
"type": "integer",
|
|
108
|
+
"default": 100,
|
|
109
|
+
"description": "Results per page (max 250)"
|
|
110
|
+
},
|
|
111
|
+
"page": {
|
|
112
|
+
"type": "integer",
|
|
113
|
+
"default": 1
|
|
114
|
+
},
|
|
115
|
+
"sparkline": {
|
|
116
|
+
"type": "boolean",
|
|
117
|
+
"default": false
|
|
118
|
+
},
|
|
119
|
+
"category": {
|
|
120
|
+
"type": "string",
|
|
121
|
+
"description": "Filter by category (e.g., decentralized-finance-defi, layer-1, meme-token)"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "get_market_chart",
|
|
128
|
+
"description": "Get historical price, market cap, and volume data for a coin over a time range.",
|
|
129
|
+
"method": "GET",
|
|
130
|
+
"path": "/coins/{id}/market_chart",
|
|
131
|
+
"input_schema": {
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"id": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"description": "Coin ID (e.g., bitcoin, ethereum)"
|
|
137
|
+
},
|
|
138
|
+
"vs_currency": {
|
|
139
|
+
"type": "string",
|
|
140
|
+
"default": "usd"
|
|
141
|
+
},
|
|
142
|
+
"days": {
|
|
143
|
+
"type": "string",
|
|
144
|
+
"description": "Data range: 1, 7, 14, 30, 90, 180, 365, max",
|
|
145
|
+
"default": "30"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"required": [
|
|
149
|
+
"id"
|
|
150
|
+
]
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "get_trending",
|
|
155
|
+
"description": "Get trending coins, NFTs, and categories on CoinGecko in the last 24 hours.",
|
|
156
|
+
"method": "GET",
|
|
157
|
+
"path": "/search/trending",
|
|
158
|
+
"input_schema": {
|
|
159
|
+
"type": "object",
|
|
160
|
+
"properties": {}
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "get_global",
|
|
165
|
+
"description": "Get global cryptocurrency market stats — total market cap, volume, BTC dominance, and DeFi market cap.",
|
|
166
|
+
"method": "GET",
|
|
167
|
+
"path": "/global",
|
|
168
|
+
"input_schema": {
|
|
169
|
+
"type": "object",
|
|
170
|
+
"properties": {}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "get_defi",
|
|
175
|
+
"description": "Get global DeFi market stats — DeFi market cap, trading volume, dominance, and top DeFi coin.",
|
|
176
|
+
"method": "GET",
|
|
177
|
+
"path": "/global/decentralized_finance_defi",
|
|
178
|
+
"input_schema": {
|
|
179
|
+
"type": "object",
|
|
180
|
+
"properties": {}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "search",
|
|
185
|
+
"description": "Search for coins, categories, and exchanges by name or symbol.",
|
|
186
|
+
"method": "GET",
|
|
187
|
+
"path": "/search",
|
|
188
|
+
"input_schema": {
|
|
189
|
+
"type": "object",
|
|
190
|
+
"properties": {
|
|
191
|
+
"query": {
|
|
192
|
+
"type": "string",
|
|
193
|
+
"description": "Search query (name or symbol)"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"required": [
|
|
197
|
+
"query"
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
]
|
|
202
|
+
}
|
package/src/apps/composio.json
CHANGED
|
@@ -13,15 +13,20 @@
|
|
|
13
13
|
"base_url": "https://backend.composio.dev/api/v3",
|
|
14
14
|
"auth": {
|
|
15
15
|
"types": [
|
|
16
|
-
"
|
|
16
|
+
"api_key"
|
|
17
17
|
],
|
|
18
18
|
"headers": {
|
|
19
|
-
"
|
|
19
|
+
"X-API-Key": "{{api_key}}",
|
|
20
|
+
"X-User-Id": "{{user_id}}"
|
|
20
21
|
},
|
|
21
22
|
"credential_fields": [
|
|
22
23
|
{
|
|
23
|
-
"name": "
|
|
24
|
+
"name": "api_key",
|
|
24
25
|
"label": "API Key"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "user_id",
|
|
29
|
+
"label": "User Id"
|
|
25
30
|
}
|
|
26
31
|
]
|
|
27
32
|
},
|
package/src/apps/confluence.json
CHANGED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "debank",
|
|
3
|
+
"name": "DeBank",
|
|
4
|
+
"description": "DeFi portfolio tracker — wallet balances, protocol positions, token approvals, and P&L across all EVM chains via REST API.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=debank.com&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"defi",
|
|
8
|
+
"portfolio",
|
|
9
|
+
"wallet",
|
|
10
|
+
"multi-chain"
|
|
11
|
+
],
|
|
12
|
+
"base_url": "https://pro-openapi.debank.com/v1",
|
|
13
|
+
"auth": {
|
|
14
|
+
"types": [
|
|
15
|
+
"api_key"
|
|
16
|
+
],
|
|
17
|
+
"headers": {
|
|
18
|
+
"AccessKey": "{{api_key}}"
|
|
19
|
+
},
|
|
20
|
+
"credential_fields": [
|
|
21
|
+
{
|
|
22
|
+
"name": "api_key",
|
|
23
|
+
"label": "Api_key",
|
|
24
|
+
"description": "DeBank Cloud API key (from https://cloud.debank.com/)"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"tools": [
|
|
29
|
+
{
|
|
30
|
+
"name": "get_total_balance",
|
|
31
|
+
"description": "Get total USD balance across all chains for a wallet.",
|
|
32
|
+
"method": "GET",
|
|
33
|
+
"path": "/user/total_balance",
|
|
34
|
+
"input_schema": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"properties": {
|
|
37
|
+
"id": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "Wallet address (0x...)"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"required": [
|
|
43
|
+
"id"
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "get_token_list",
|
|
49
|
+
"description": "Get all token balances for a wallet on a specific chain.",
|
|
50
|
+
"method": "GET",
|
|
51
|
+
"path": "/user/token_list",
|
|
52
|
+
"input_schema": {
|
|
53
|
+
"type": "object",
|
|
54
|
+
"properties": {
|
|
55
|
+
"id": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "Wallet address"
|
|
58
|
+
},
|
|
59
|
+
"chain_id": {
|
|
60
|
+
"type": "string",
|
|
61
|
+
"description": "Chain ID (eth, bsc, matic, arb, op, base, avax)",
|
|
62
|
+
"default": "eth"
|
|
63
|
+
},
|
|
64
|
+
"is_all": {
|
|
65
|
+
"type": "boolean",
|
|
66
|
+
"description": "Include all chains",
|
|
67
|
+
"default": false
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"required": [
|
|
71
|
+
"id"
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "get_protocol_list",
|
|
77
|
+
"description": "Get all DeFi protocol positions (lending, staking, farming, LPs) for a wallet.",
|
|
78
|
+
"method": "GET",
|
|
79
|
+
"path": "/user/all_complex_protocol_list",
|
|
80
|
+
"input_schema": {
|
|
81
|
+
"type": "object",
|
|
82
|
+
"properties": {
|
|
83
|
+
"id": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"description": "Wallet address"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"required": [
|
|
89
|
+
"id"
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "get_history",
|
|
95
|
+
"description": "Get decoded transaction history for a wallet with human-readable descriptions.",
|
|
96
|
+
"method": "GET",
|
|
97
|
+
"path": "/user/history_list",
|
|
98
|
+
"input_schema": {
|
|
99
|
+
"type": "object",
|
|
100
|
+
"properties": {
|
|
101
|
+
"id": {
|
|
102
|
+
"type": "string",
|
|
103
|
+
"description": "Wallet address"
|
|
104
|
+
},
|
|
105
|
+
"chain_id": {
|
|
106
|
+
"type": "string",
|
|
107
|
+
"default": "eth"
|
|
108
|
+
},
|
|
109
|
+
"page_count": {
|
|
110
|
+
"type": "integer",
|
|
111
|
+
"default": 20
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"required": [
|
|
115
|
+
"id"
|
|
116
|
+
]
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "get_chains",
|
|
121
|
+
"description": "Get list of all supported blockchain networks.",
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"path": "/chain/list",
|
|
124
|
+
"input_schema": {
|
|
125
|
+
"type": "object",
|
|
126
|
+
"properties": {}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "defillama",
|
|
3
|
+
"name": "DeFi Llama",
|
|
4
|
+
"description": "DeFi analytics — protocol TVL, yield/APY data, stablecoin stats, DEX volumes, and chain metrics. Free, no API key needed.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=defillama.com&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"defi",
|
|
8
|
+
"tvl",
|
|
9
|
+
"yields",
|
|
10
|
+
"stablecoins",
|
|
11
|
+
"dex",
|
|
12
|
+
"analytics"
|
|
13
|
+
],
|
|
14
|
+
"base_url": "https://api.llama.fi",
|
|
15
|
+
"auth": {
|
|
16
|
+
"types": [
|
|
17
|
+
"bearer"
|
|
18
|
+
],
|
|
19
|
+
"headers": {
|
|
20
|
+
"Authorization": "Bearer {{token}}"
|
|
21
|
+
},
|
|
22
|
+
"credential_fields": [
|
|
23
|
+
{
|
|
24
|
+
"name": "token",
|
|
25
|
+
"label": "Token"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "get_protocols",
|
|
32
|
+
"description": "Get TVL, chain breakdown, and metadata for all DeFi protocols tracked by DeFi Llama.",
|
|
33
|
+
"method": "GET",
|
|
34
|
+
"path": "/protocols",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "get_protocol",
|
|
42
|
+
"description": "Get historical TVL data for a specific protocol (e.g., aave, uniswap, lido, compound).",
|
|
43
|
+
"method": "GET",
|
|
44
|
+
"path": "/protocol/{slug}",
|
|
45
|
+
"input_schema": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"slug": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Protocol slug (e.g., aave, uniswap, lido, compound, makerdao)"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"required": [
|
|
54
|
+
"slug"
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "get_chains",
|
|
60
|
+
"description": "Get current TVL for all chains (Ethereum, Solana, Arbitrum, etc.).",
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"path": "/v2/chains",
|
|
63
|
+
"input_schema": {
|
|
64
|
+
"type": "object",
|
|
65
|
+
"properties": {}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "get_yields",
|
|
70
|
+
"description": "Get current APY/APR for all tracked yield pools across DeFi. Returns pool, chain, project, TVL, APY, and reward tokens.",
|
|
71
|
+
"method": "GET",
|
|
72
|
+
"path": "/pools",
|
|
73
|
+
"input_schema": {
|
|
74
|
+
"type": "object",
|
|
75
|
+
"properties": {}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "get_yield_chart",
|
|
80
|
+
"description": "Get historical APY data for a specific yield pool by its UUID.",
|
|
81
|
+
"method": "GET",
|
|
82
|
+
"path": "/chart/{pool}",
|
|
83
|
+
"input_schema": {
|
|
84
|
+
"type": "object",
|
|
85
|
+
"properties": {
|
|
86
|
+
"pool": {
|
|
87
|
+
"type": "string",
|
|
88
|
+
"description": "Pool UUID from the yields endpoint"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"required": [
|
|
92
|
+
"pool"
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "get_stablecoins",
|
|
98
|
+
"description": "Get market cap and chain distribution for all stablecoins.",
|
|
99
|
+
"method": "GET",
|
|
100
|
+
"path": "/stablecoins",
|
|
101
|
+
"input_schema": {
|
|
102
|
+
"type": "object",
|
|
103
|
+
"properties": {}
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "get_dex_volumes",
|
|
108
|
+
"description": "Get 24h trading volume for all DEXs across all chains.",
|
|
109
|
+
"method": "GET",
|
|
110
|
+
"path": "/overview/dexs",
|
|
111
|
+
"input_schema": {
|
|
112
|
+
"type": "object",
|
|
113
|
+
"properties": {}
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "get_fees",
|
|
118
|
+
"description": "Get fees and revenue data for all protocols.",
|
|
119
|
+
"method": "GET",
|
|
120
|
+
"path": "/overview/fees",
|
|
121
|
+
"input_schema": {
|
|
122
|
+
"type": "object",
|
|
123
|
+
"properties": {}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "get_token_prices",
|
|
128
|
+
"description": "Get current prices for tokens by contract address. Format: chain:address (e.g., ethereum:0xdAC17F958D2ee523a2206206994597C13D831ec7).",
|
|
129
|
+
"method": "GET",
|
|
130
|
+
"path": "/prices/current/{coins}",
|
|
131
|
+
"input_schema": {
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"coins": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"description": "Comma-separated chain:address pairs (e.g., ethereum:0xdAC17F958D2ee523a2206206994597C13D831ec7)"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"required": [
|
|
140
|
+
"coins"
|
|
141
|
+
]
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "dune",
|
|
3
|
+
"name": "Dune Analytics",
|
|
4
|
+
"description": "On-chain SQL analytics — execute queries, get results from community dashboards, and access pre-built blockchain datasets.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=dune.com&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"analytics",
|
|
8
|
+
"on-chain",
|
|
9
|
+
"sql",
|
|
10
|
+
"blockchain",
|
|
11
|
+
"dashboards"
|
|
12
|
+
],
|
|
13
|
+
"base_url": "",
|
|
14
|
+
"auth": {
|
|
15
|
+
"types": [
|
|
16
|
+
"api_key"
|
|
17
|
+
],
|
|
18
|
+
"headers": {
|
|
19
|
+
"X-Dune-Api-Key": "{{api_key}}"
|
|
20
|
+
},
|
|
21
|
+
"credential_fields": [
|
|
22
|
+
{
|
|
23
|
+
"name": "api_key",
|
|
24
|
+
"label": "Api_key",
|
|
25
|
+
"description": "Dune Analytics API key (from https://dune.com/settings/api)"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "execute_query",
|
|
32
|
+
"description": "Execute a Dune SQL query by ID. Returns an execution_id to poll for results.",
|
|
33
|
+
"method": "POST",
|
|
34
|
+
"path": "/execute-query",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {
|
|
38
|
+
"query_id": {
|
|
39
|
+
"type": "integer",
|
|
40
|
+
"description": "Dune query ID (from the query URL)"
|
|
41
|
+
},
|
|
42
|
+
"parameters": {
|
|
43
|
+
"type": "object",
|
|
44
|
+
"description": "Query parameters as key-value pairs"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"required": [
|
|
48
|
+
"query_id"
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "get_results",
|
|
54
|
+
"description": "Get the latest results for a query (uses cached results if available).",
|
|
55
|
+
"method": "GET",
|
|
56
|
+
"path": "/get-results",
|
|
57
|
+
"input_schema": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"properties": {
|
|
60
|
+
"query_id": {
|
|
61
|
+
"type": "integer",
|
|
62
|
+
"description": "Dune query ID"
|
|
63
|
+
},
|
|
64
|
+
"limit": {
|
|
65
|
+
"type": "integer",
|
|
66
|
+
"description": "Max rows to return",
|
|
67
|
+
"default": 100
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"required": [
|
|
71
|
+
"query_id"
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "get_execution_status",
|
|
77
|
+
"description": "Check the status of a running query execution.",
|
|
78
|
+
"method": "GET",
|
|
79
|
+
"path": "/get-execution-status",
|
|
80
|
+
"input_schema": {
|
|
81
|
+
"type": "object",
|
|
82
|
+
"properties": {
|
|
83
|
+
"execution_id": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"description": "Execution ID from execute-query"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"required": [
|
|
89
|
+
"execution_id"
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "get_execution_results",
|
|
95
|
+
"description": "Get results for a specific execution (after it completes).",
|
|
96
|
+
"method": "GET",
|
|
97
|
+
"path": "/get-execution-results",
|
|
98
|
+
"input_schema": {
|
|
99
|
+
"type": "object",
|
|
100
|
+
"properties": {
|
|
101
|
+
"execution_id": {
|
|
102
|
+
"type": "string"
|
|
103
|
+
},
|
|
104
|
+
"limit": {
|
|
105
|
+
"type": "integer",
|
|
106
|
+
"default": 100
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"required": [
|
|
110
|
+
"execution_id"
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
}
|