@apteva/integrations 0.3.23 → 0.3.25

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.
@@ -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
+ }
@@ -0,0 +1,151 @@
1
+ {
2
+ "slug": "dydx",
3
+ "name": "dYdX",
4
+ "description": "Decentralized perpetuals exchange (v4) — market data, orderbooks, candles, trades, and funding rates. Public endpoints are free.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=dydx.exchange&sz=128",
6
+ "categories": [
7
+ "dex",
8
+ "perpetuals",
9
+ "derivatives",
10
+ "defi",
11
+ "orderbook"
12
+ ],
13
+ "base_url": "https://indexer.dydx.trade/v4",
14
+ "auth": {
15
+ "types": [
16
+ "bearer"
17
+ ],
18
+ "headers": {
19
+ "Authorization": "Bearer {{token}}"
20
+ },
21
+ "credential_fields": [
22
+ {
23
+ "name": "api_key",
24
+ "label": "Api_key",
25
+ "description": "dYdX API key (needed only for private endpoints)"
26
+ },
27
+ {
28
+ "name": "secret",
29
+ "label": "Secret",
30
+ "description": "dYdX API secret"
31
+ },
32
+ {
33
+ "name": "passphrase",
34
+ "label": "Passphrase",
35
+ "description": "dYdX API passphrase"
36
+ },
37
+ {
38
+ "name": "stark_private_key",
39
+ "label": "Stark_private_key",
40
+ "description": "STARK private key for order signing"
41
+ }
42
+ ]
43
+ },
44
+ "tools": [
45
+ {
46
+ "name": "get_markets",
47
+ "description": "Get all perpetual markets with current prices, volume, open interest, and funding rates.",
48
+ "method": "GET",
49
+ "path": "/perpetualMarkets",
50
+ "input_schema": {
51
+ "type": "object",
52
+ "properties": {}
53
+ }
54
+ },
55
+ {
56
+ "name": "get_orderbook",
57
+ "description": "Get order book for a perpetual market.",
58
+ "method": "GET",
59
+ "path": "/orderbooks/perpetualMarket/{ticker}",
60
+ "input_schema": {
61
+ "type": "object",
62
+ "properties": {
63
+ "ticker": {
64
+ "type": "string",
65
+ "description": "Market ticker (e.g., BTC-USD, ETH-USD)"
66
+ }
67
+ },
68
+ "required": [
69
+ "ticker"
70
+ ]
71
+ }
72
+ },
73
+ {
74
+ "name": "get_candles",
75
+ "description": "Get OHLCV candle data for a perpetual market.",
76
+ "method": "GET",
77
+ "path": "/candles/perpetualMarkets/{ticker}",
78
+ "input_schema": {
79
+ "type": "object",
80
+ "properties": {
81
+ "ticker": {
82
+ "type": "string",
83
+ "description": "Market ticker (e.g., BTC-USD)"
84
+ },
85
+ "resolution": {
86
+ "type": "string",
87
+ "enum": [
88
+ "1MIN",
89
+ "5MINS",
90
+ "15MINS",
91
+ "30MINS",
92
+ "1HOUR",
93
+ "4HOURS",
94
+ "1DAY"
95
+ ],
96
+ "default": "1HOUR"
97
+ },
98
+ "limit": {
99
+ "type": "integer",
100
+ "default": 100
101
+ }
102
+ },
103
+ "required": [
104
+ "ticker"
105
+ ]
106
+ }
107
+ },
108
+ {
109
+ "name": "get_trades",
110
+ "description": "Get recent trades for a perpetual market.",
111
+ "method": "GET",
112
+ "path": "/trades/perpetualMarket/{ticker}",
113
+ "input_schema": {
114
+ "type": "object",
115
+ "properties": {
116
+ "ticker": {
117
+ "type": "string"
118
+ },
119
+ "limit": {
120
+ "type": "integer",
121
+ "default": 50
122
+ }
123
+ },
124
+ "required": [
125
+ "ticker"
126
+ ]
127
+ }
128
+ },
129
+ {
130
+ "name": "get_historical_funding",
131
+ "description": "Get historical funding rates for a perpetual market.",
132
+ "method": "GET",
133
+ "path": "/historicalFunding/{ticker}",
134
+ "input_schema": {
135
+ "type": "object",
136
+ "properties": {
137
+ "ticker": {
138
+ "type": "string"
139
+ },
140
+ "limit": {
141
+ "type": "integer",
142
+ "default": 50
143
+ }
144
+ },
145
+ "required": [
146
+ "ticker"
147
+ ]
148
+ }
149
+ }
150
+ ]
151
+ }
@@ -49,10 +49,10 @@
49
49
  "type": "string",
50
50
  "description": "Voice ID to use (required)"
51
51
  },
52
- "model": {
52
+ "model_id": {
53
53
  "type": "string",
54
- "default": "eleven_monolingual_v1",
55
- "description": "ElevenLabs model to use"
54
+ "default": "eleven_multilingual_v2",
55
+ "description": "ElevenLabs model ID (e.g. eleven_multilingual_v2, eleven_turbo_v2_5, eleven_flash_v2_5)"
56
56
  },
57
57
  "stability": {
58
58
  "type": "number",
@@ -74,6 +74,37 @@
74
74
  "maximum": 1,
75
75
  "default": 0,
76
76
  "description": "Style setting (0.0-1.0)"
77
+ },
78
+ "language_code": {
79
+ "type": "string",
80
+ "description": "Language code for multilingual models (e.g. en, es, fr, de, ja)"
81
+ },
82
+ "output_format": {
83
+ "type": "string",
84
+ "default": "mp3_44100_128",
85
+ "description": "Output format (mp3_44100_128, pcm_16000, pcm_22050, pcm_24000, pcm_44100, ulaw_8000)"
86
+ },
87
+ "seed": {
88
+ "type": "integer",
89
+ "description": "Seed for deterministic generation"
90
+ },
91
+ "previous_text": {
92
+ "type": "string",
93
+ "description": "Text that comes before the current text for context"
94
+ },
95
+ "next_text": {
96
+ "type": "string",
97
+ "description": "Text that comes after the current text for context"
98
+ },
99
+ "apply_text_normalization": {
100
+ "type": "string",
101
+ "enum": [
102
+ "auto",
103
+ "on",
104
+ "off"
105
+ ],
106
+ "default": "auto",
107
+ "description": "Text normalization mode"
77
108
  }
78
109
  },
79
110
  "required": [
@@ -133,7 +164,8 @@
133
164
  "community",
134
165
  "default",
135
166
  "workspace",
136
- "non-default"
167
+ "non-default",
168
+ "saved"
137
169
  ],
138
170
  "description": "Filter by voice type"
139
171
  },
@@ -218,6 +250,11 @@
218
250
  "labels": {
219
251
  "type": "object",
220
252
  "description": "Labels for the voice (accent, age, gender, etc.)"
253
+ },
254
+ "remove_background_noise": {
255
+ "type": "boolean",
256
+ "default": false,
257
+ "description": "Remove background noise from audio samples before cloning"
221
258
  }
222
259
  },
223
260
  "required": [
@@ -249,15 +286,27 @@
249
286
  },
250
287
  "music_length_ms": {
251
288
  "type": "number",
252
- "minimum": 10000,
253
- "maximum": 300000,
289
+ "minimum": 3000,
290
+ "maximum": 600000,
254
291
  "default": 30000,
255
- "description": "Music length in milliseconds (10000-300000, 10 seconds to 5 minutes)"
292
+ "description": "Music length in milliseconds (3000-600000, 3 seconds to 10 minutes)"
256
293
  },
257
294
  "output_format": {
258
295
  "type": "string",
259
296
  "default": "mp3",
260
297
  "description": "Audio output format (mp3 or wav)"
298
+ },
299
+ "model_id": {
300
+ "type": "string",
301
+ "description": "Model ID for music generation"
302
+ },
303
+ "force_instrumental": {
304
+ "type": "boolean",
305
+ "description": "Force instrumental-only output (no vocals)"
306
+ },
307
+ "seed": {
308
+ "type": "integer",
309
+ "description": "Seed for deterministic generation"
261
310
  }
262
311
  },
263
312
  "required": [
@@ -311,10 +360,10 @@
311
360
  },
312
361
  "music_length_ms": {
313
362
  "type": "number",
314
- "minimum": 5000,
315
- "maximum": 300000,
363
+ "minimum": 3000,
364
+ "maximum": 600000,
316
365
  "default": 30000,
317
- "description": "Target music length in milliseconds"
366
+ "description": "Target music length in milliseconds (3000-600000)"
318
367
  }
319
368
  },
320
369
  "required": [