@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
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "zapper",
|
|
3
|
+
"name": "Zapper",
|
|
4
|
+
"description": "Multi-chain DeFi portfolio — wallet balances, protocol positions, NFTs, and app data across all EVM chains.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=zapper.xyz&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"defi",
|
|
8
|
+
"portfolio",
|
|
9
|
+
"wallet",
|
|
10
|
+
"nft",
|
|
11
|
+
"multi-chain"
|
|
12
|
+
],
|
|
13
|
+
"base_url": "https://api.zapper.xyz/v2",
|
|
14
|
+
"auth": {
|
|
15
|
+
"types": [
|
|
16
|
+
"bearer"
|
|
17
|
+
],
|
|
18
|
+
"headers": {
|
|
19
|
+
"Authorization": "{{token}}"
|
|
20
|
+
},
|
|
21
|
+
"credential_fields": [
|
|
22
|
+
{
|
|
23
|
+
"name": "api_key",
|
|
24
|
+
"label": "Api_key",
|
|
25
|
+
"description": "Zapper API key (base64 encoded, from https://studio.zapper.xyz/)"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "get_balances",
|
|
32
|
+
"description": "Get token balances and DeFi positions for a wallet across all supported chains.",
|
|
33
|
+
"method": "GET",
|
|
34
|
+
"path": "/balances",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {
|
|
38
|
+
"address": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"description": "Wallet address (0x...)"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"required": [
|
|
44
|
+
"address"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "get_apps",
|
|
50
|
+
"description": "Get list of all supported DeFi apps/protocols on Zapper.",
|
|
51
|
+
"method": "GET",
|
|
52
|
+
"path": "/apps",
|
|
53
|
+
"input_schema": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"properties": {}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "get_app_balances",
|
|
60
|
+
"description": "Get positions in a specific DeFi app for a wallet.",
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"path": "/apps/{appId}/balances",
|
|
63
|
+
"input_schema": {
|
|
64
|
+
"type": "object",
|
|
65
|
+
"properties": {
|
|
66
|
+
"appId": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "App/protocol ID (e.g., uniswap-v3, aave-v3, lido)"
|
|
69
|
+
},
|
|
70
|
+
"address": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "Wallet address"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"required": [
|
|
76
|
+
"appId",
|
|
77
|
+
"address"
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "zerox",
|
|
3
|
+
"name": "0x Protocol",
|
|
4
|
+
"description": "Multi-chain DEX aggregation — swap quotes, price comparisons, and source breakdowns across Ethereum, Polygon, BSC, Arbitrum, and more.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=0x.org&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"dex",
|
|
8
|
+
"aggregator",
|
|
9
|
+
"swap",
|
|
10
|
+
"defi"
|
|
11
|
+
],
|
|
12
|
+
"base_url": "https://api.0x.org",
|
|
13
|
+
"auth": {
|
|
14
|
+
"types": [
|
|
15
|
+
"api_key"
|
|
16
|
+
],
|
|
17
|
+
"headers": {
|
|
18
|
+
"0x-api-key": "{{api_key}}"
|
|
19
|
+
},
|
|
20
|
+
"credential_fields": [
|
|
21
|
+
{
|
|
22
|
+
"name": "api_key",
|
|
23
|
+
"label": "Api_key",
|
|
24
|
+
"description": "0x API key (from https://dashboard.0x.org/)"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"tools": [
|
|
29
|
+
{
|
|
30
|
+
"name": "get_quote",
|
|
31
|
+
"description": "Get a swap quote with routing info across all DEX sources.",
|
|
32
|
+
"method": "GET",
|
|
33
|
+
"path": "/swap/v1/quote",
|
|
34
|
+
"input_schema": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"properties": {
|
|
37
|
+
"sellToken": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "Token address or symbol to sell (e.g., ETH, USDC, or 0x...)"
|
|
40
|
+
},
|
|
41
|
+
"buyToken": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "Token address or symbol to buy"
|
|
44
|
+
},
|
|
45
|
+
"sellAmount": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "Amount to sell in smallest unit (wei)"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"required": [
|
|
51
|
+
"sellToken",
|
|
52
|
+
"buyToken",
|
|
53
|
+
"sellAmount"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "get_price",
|
|
59
|
+
"description": "Get an indicative price without routing. Faster than quote, good for price comparison.",
|
|
60
|
+
"method": "GET",
|
|
61
|
+
"path": "/swap/v1/price",
|
|
62
|
+
"input_schema": {
|
|
63
|
+
"type": "object",
|
|
64
|
+
"properties": {
|
|
65
|
+
"sellToken": {
|
|
66
|
+
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
"buyToken": {
|
|
69
|
+
"type": "string"
|
|
70
|
+
},
|
|
71
|
+
"sellAmount": {
|
|
72
|
+
"type": "string"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"required": [
|
|
76
|
+
"sellToken",
|
|
77
|
+
"buyToken",
|
|
78
|
+
"sellAmount"
|
|
79
|
+
]
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "get_sources",
|
|
84
|
+
"description": "Get all available liquidity sources on a chain.",
|
|
85
|
+
"method": "GET",
|
|
86
|
+
"path": "/swap/v1/sources",
|
|
87
|
+
"input_schema": {
|
|
88
|
+
"type": "object",
|
|
89
|
+
"properties": {}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|