@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.
- package/package.json +1 -1
- package/src/apps/alchemy.json +120 -0
- package/src/apps/alternative-me.json +55 -0
- package/src/apps/bybit.json +192 -0
- package/src/apps/castbase.json +0 -5
- package/src/apps/coingecko.json +202 -0
- package/src/apps/debank.json +130 -0
- package/src/apps/defillama.json +145 -0
- package/src/apps/dune.json +115 -0
- package/src/apps/dydx.json +151 -0
- package/src/apps/elevenlabs.json +59 -10
- package/src/apps/hyperliquid.json +129 -0
- package/src/apps/jupiter-dex.json +91 -0
- 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 +195 -0
- package/src/apps/santiment.json +49 -0
- package/src/apps/thegraph.json +59 -0
- package/src/apps/wellsaid.json +227 -0
- package/src/apps/zapper.json +82 -0
- package/src/apps/zerox.json +93 -0
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "hyperliquid",
|
|
3
|
+
"name": "Hyperliquid",
|
|
4
|
+
"description": "On-chain perpetuals DEX — real-time market data, orderbooks, candles, funding rates, user positions, and trade history. Info endpoints are free.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=hyperliquid.xyz&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"perpetuals",
|
|
8
|
+
"dex",
|
|
9
|
+
"defi",
|
|
10
|
+
"trading",
|
|
11
|
+
"derivatives"
|
|
12
|
+
],
|
|
13
|
+
"base_url": "https://api.hyperliquid.xyz",
|
|
14
|
+
"auth": {
|
|
15
|
+
"types": [
|
|
16
|
+
"bearer"
|
|
17
|
+
],
|
|
18
|
+
"headers": {
|
|
19
|
+
"Authorization": "Bearer {{token}}"
|
|
20
|
+
},
|
|
21
|
+
"credential_fields": [
|
|
22
|
+
{
|
|
23
|
+
"name": "wallet_address",
|
|
24
|
+
"label": "Wallet_address",
|
|
25
|
+
"description": "Your Ethereum wallet address for querying positions (optional for market data)"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "get_meta",
|
|
32
|
+
"description": "Get metadata for all perpetual markets — symbols, max leverage, tick sizes, and contract specs.",
|
|
33
|
+
"method": "POST",
|
|
34
|
+
"path": "/info",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "get_all_mids",
|
|
42
|
+
"description": "Get current mid prices for all perpetual markets.",
|
|
43
|
+
"method": "POST",
|
|
44
|
+
"path": "/info",
|
|
45
|
+
"input_schema": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "get_orderbook",
|
|
52
|
+
"description": "Get L2 order book for a perpetual market.",
|
|
53
|
+
"method": "POST",
|
|
54
|
+
"path": "/info",
|
|
55
|
+
"input_schema": {
|
|
56
|
+
"type": "object",
|
|
57
|
+
"properties": {
|
|
58
|
+
"coin": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"description": "Market symbol (e.g., BTC, ETH, SOL)"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"required": [
|
|
64
|
+
"coin"
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "get_candles",
|
|
70
|
+
"description": "Get OHLCV candle data for a perpetual market.",
|
|
71
|
+
"method": "POST",
|
|
72
|
+
"path": "/info",
|
|
73
|
+
"input_schema": {
|
|
74
|
+
"type": "object",
|
|
75
|
+
"properties": {
|
|
76
|
+
"coin": {
|
|
77
|
+
"type": "string",
|
|
78
|
+
"description": "Market symbol (e.g., BTC, ETH)"
|
|
79
|
+
},
|
|
80
|
+
"interval": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"description": "Candle interval (1m, 5m, 15m, 1h, 4h, 1d)",
|
|
83
|
+
"default": "1h"
|
|
84
|
+
},
|
|
85
|
+
"startTime": {
|
|
86
|
+
"type": "integer",
|
|
87
|
+
"description": "Start time (Unix ms)"
|
|
88
|
+
},
|
|
89
|
+
"endTime": {
|
|
90
|
+
"type": "integer",
|
|
91
|
+
"description": "End time (Unix ms)"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"required": [
|
|
95
|
+
"coin",
|
|
96
|
+
"interval"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "get_user_state",
|
|
102
|
+
"description": "Get open positions, margin, and account value for a wallet address.",
|
|
103
|
+
"method": "POST",
|
|
104
|
+
"path": "/info",
|
|
105
|
+
"input_schema": {
|
|
106
|
+
"type": "object",
|
|
107
|
+
"properties": {
|
|
108
|
+
"user": {
|
|
109
|
+
"type": "string",
|
|
110
|
+
"description": "Wallet address (0x...)"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"required": [
|
|
114
|
+
"user"
|
|
115
|
+
]
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "get_funding",
|
|
120
|
+
"description": "Get current and historical funding rates for perpetual markets.",
|
|
121
|
+
"method": "POST",
|
|
122
|
+
"path": "/info",
|
|
123
|
+
"input_schema": {
|
|
124
|
+
"type": "object",
|
|
125
|
+
"properties": {}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "jupiter-dex",
|
|
3
|
+
"name": "Jupiter (Solana DEX)",
|
|
4
|
+
"description": "Solana DEX aggregator — get best swap quotes, token prices, and route information across all Solana DEXs. Free, no API key.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=jup.ag&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"solana",
|
|
8
|
+
"dex",
|
|
9
|
+
"swap",
|
|
10
|
+
"defi",
|
|
11
|
+
"aggregator"
|
|
12
|
+
],
|
|
13
|
+
"base_url": "https://token.jup.ag",
|
|
14
|
+
"auth": {
|
|
15
|
+
"types": [
|
|
16
|
+
"bearer"
|
|
17
|
+
],
|
|
18
|
+
"headers": {
|
|
19
|
+
"Authorization": "Bearer {{token}}"
|
|
20
|
+
},
|
|
21
|
+
"credential_fields": [
|
|
22
|
+
{
|
|
23
|
+
"name": "token",
|
|
24
|
+
"label": "Token"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"tools": [
|
|
29
|
+
{
|
|
30
|
+
"name": "jupiter_get_quote",
|
|
31
|
+
"description": "Get the best swap quote across all Solana DEXs. Returns route, price impact, and fees. Use mint addresses for tokens.",
|
|
32
|
+
"method": "GET",
|
|
33
|
+
"path": "/v6/quote",
|
|
34
|
+
"input_schema": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"properties": {
|
|
37
|
+
"inputMint": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "Input token mint address (SOL: So11111111111111111111111111111111111111112, USDC: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v)"
|
|
40
|
+
},
|
|
41
|
+
"outputMint": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "Output token mint address"
|
|
44
|
+
},
|
|
45
|
+
"amount": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "Amount in smallest unit (lamports for SOL, 1 SOL = 1000000000)"
|
|
48
|
+
},
|
|
49
|
+
"slippageBps": {
|
|
50
|
+
"type": "integer",
|
|
51
|
+
"description": "Slippage tolerance in basis points (50 = 0.5%)",
|
|
52
|
+
"default": 50
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"required": [
|
|
56
|
+
"inputMint",
|
|
57
|
+
"outputMint",
|
|
58
|
+
"amount"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "jupiter_get_tokens",
|
|
64
|
+
"description": "Get all tradeable tokens on Jupiter with mint addresses, symbols, and decimals.",
|
|
65
|
+
"method": "GET",
|
|
66
|
+
"path": "/all",
|
|
67
|
+
"input_schema": {
|
|
68
|
+
"type": "object",
|
|
69
|
+
"properties": {}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "jupiter_get_price",
|
|
74
|
+
"description": "Get USD price for one or more Solana tokens by mint address or symbol.",
|
|
75
|
+
"method": "GET",
|
|
76
|
+
"path": "/v6/price",
|
|
77
|
+
"input_schema": {
|
|
78
|
+
"type": "object",
|
|
79
|
+
"properties": {
|
|
80
|
+
"ids": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"description": "Comma-separated mint addresses or symbols (e.g., SOL,USDC,JUP)"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"required": [
|
|
86
|
+
"ids"
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "lunarcrush",
|
|
3
|
+
"name": "LunarCrush",
|
|
4
|
+
"description": "Social intelligence for crypto — social media metrics, influencer tracking, sentiment analysis, and trending coins across Twitter, Reddit, YouTube.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=lunarcrush.com&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"social",
|
|
8
|
+
"sentiment",
|
|
9
|
+
"influencers",
|
|
10
|
+
"trending",
|
|
11
|
+
"crypto"
|
|
12
|
+
],
|
|
13
|
+
"base_url": "https://lunarcrush.com",
|
|
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": "LunarCrush API key (from https://lunarcrush.com/developers/api/authentication)"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "get_coins",
|
|
32
|
+
"description": "Get list of all tracked coins with social metrics.",
|
|
33
|
+
"method": "GET",
|
|
34
|
+
"path": "/api4/public/coins/list",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "get_coin_metrics",
|
|
42
|
+
"description": "Get social metrics for a specific coin — social volume, sentiment, interactions, contributors.",
|
|
43
|
+
"method": "GET",
|
|
44
|
+
"path": "/api4/public/coins/{symbol}/v1",
|
|
45
|
+
"input_schema": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"symbol": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Coin symbol (e.g., BTC, ETH, SOL)"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"required": [
|
|
54
|
+
"symbol"
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "get_coin_time_series",
|
|
60
|
+
"description": "Get historical social and market data for a coin.",
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"path": "/api4/public/coins/{symbol}/time-series/v2",
|
|
63
|
+
"input_schema": {
|
|
64
|
+
"type": "object",
|
|
65
|
+
"properties": {
|
|
66
|
+
"symbol": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "Coin symbol"
|
|
69
|
+
},
|
|
70
|
+
"bucket": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"enum": [
|
|
73
|
+
"hour",
|
|
74
|
+
"day",
|
|
75
|
+
"week"
|
|
76
|
+
],
|
|
77
|
+
"default": "day"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"required": [
|
|
81
|
+
"symbol"
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "get_trending",
|
|
87
|
+
"description": "Get trending coins by social activity.",
|
|
88
|
+
"method": "GET",
|
|
89
|
+
"path": "/api4/public/coins/trending/v1",
|
|
90
|
+
"input_schema": {
|
|
91
|
+
"type": "object",
|
|
92
|
+
"properties": {}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
]
|
|
96
|
+
}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "messari",
|
|
3
|
+
"name": "Messari",
|
|
4
|
+
"description": "Crypto research and fundamental data — asset profiles, market metrics, on-chain data, and institutional-grade analysis.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=messari.io&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"research",
|
|
8
|
+
"fundamentals",
|
|
9
|
+
"metrics",
|
|
10
|
+
"crypto",
|
|
11
|
+
"institutional"
|
|
12
|
+
],
|
|
13
|
+
"base_url": "",
|
|
14
|
+
"auth": {
|
|
15
|
+
"types": [
|
|
16
|
+
"api_key"
|
|
17
|
+
],
|
|
18
|
+
"headers": {
|
|
19
|
+
"x-messari-api-key": "{{api_key}}"
|
|
20
|
+
},
|
|
21
|
+
"credential_fields": [
|
|
22
|
+
{
|
|
23
|
+
"name": "api_key",
|
|
24
|
+
"label": "Api_key",
|
|
25
|
+
"description": "Messari API key (from https://messari.io/account/api)"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "get_assets",
|
|
32
|
+
"description": "Get a paginated list of all crypto assets with basic metrics.",
|
|
33
|
+
"method": "GET",
|
|
34
|
+
"path": "/get-assets",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {
|
|
38
|
+
"limit": {
|
|
39
|
+
"type": "integer",
|
|
40
|
+
"default": 20
|
|
41
|
+
},
|
|
42
|
+
"page": {
|
|
43
|
+
"type": "integer",
|
|
44
|
+
"default": 1
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "get_asset",
|
|
51
|
+
"description": "Get comprehensive profile for a crypto asset — description, technology, economics, governance, and team.",
|
|
52
|
+
"method": "GET",
|
|
53
|
+
"path": "/get-asset",
|
|
54
|
+
"input_schema": {
|
|
55
|
+
"type": "object",
|
|
56
|
+
"properties": {
|
|
57
|
+
"slug": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"description": "Asset slug (e.g., bitcoin, ethereum, solana)"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"required": [
|
|
63
|
+
"slug"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "get_asset_metrics",
|
|
69
|
+
"description": "Get market data, on-chain metrics, and ROI for a crypto asset.",
|
|
70
|
+
"method": "GET",
|
|
71
|
+
"path": "/get-asset-metrics",
|
|
72
|
+
"input_schema": {
|
|
73
|
+
"type": "object",
|
|
74
|
+
"properties": {
|
|
75
|
+
"slug": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "Asset slug"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"required": [
|
|
81
|
+
"slug"
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "get_asset_timeseries",
|
|
87
|
+
"description": "Get historical time series data for an asset metric (price, volume, mcap, etc.).",
|
|
88
|
+
"method": "GET",
|
|
89
|
+
"path": "/get-asset-timeseries",
|
|
90
|
+
"input_schema": {
|
|
91
|
+
"type": "object",
|
|
92
|
+
"properties": {
|
|
93
|
+
"slug": {
|
|
94
|
+
"type": "string",
|
|
95
|
+
"description": "Asset slug"
|
|
96
|
+
},
|
|
97
|
+
"metric": {
|
|
98
|
+
"type": "string",
|
|
99
|
+
"description": "Metric key (e.g., price, volume, mcap.current_marketcap_usd)",
|
|
100
|
+
"default": "price"
|
|
101
|
+
},
|
|
102
|
+
"start": {
|
|
103
|
+
"type": "string",
|
|
104
|
+
"description": "Start date (YYYY-MM-DD)"
|
|
105
|
+
},
|
|
106
|
+
"end": {
|
|
107
|
+
"type": "string",
|
|
108
|
+
"description": "End date (YYYY-MM-DD)"
|
|
109
|
+
},
|
|
110
|
+
"interval": {
|
|
111
|
+
"type": "string",
|
|
112
|
+
"enum": [
|
|
113
|
+
"5m",
|
|
114
|
+
"15m",
|
|
115
|
+
"30m",
|
|
116
|
+
"1h",
|
|
117
|
+
"1d",
|
|
118
|
+
"1w"
|
|
119
|
+
],
|
|
120
|
+
"default": "1d"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"required": [
|
|
124
|
+
"slug",
|
|
125
|
+
"metric"
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "get_news",
|
|
131
|
+
"description": "Get latest crypto news articles curated by Messari.",
|
|
132
|
+
"method": "GET",
|
|
133
|
+
"path": "/get-news",
|
|
134
|
+
"input_schema": {
|
|
135
|
+
"type": "object",
|
|
136
|
+
"properties": {
|
|
137
|
+
"page": {
|
|
138
|
+
"type": "integer",
|
|
139
|
+
"default": 1
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "moralis",
|
|
3
|
+
"name": "Moralis Web3 Data",
|
|
4
|
+
"description": "Web3 data API — wallet portfolios, token transfers, DeFi positions, price data, and blockchain events via REST. No Web3 SDK needed.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=moralis.io&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"web3",
|
|
8
|
+
"wallet",
|
|
9
|
+
"tokens",
|
|
10
|
+
"nft",
|
|
11
|
+
"defi",
|
|
12
|
+
"blockchain"
|
|
13
|
+
],
|
|
14
|
+
"base_url": "",
|
|
15
|
+
"auth": {
|
|
16
|
+
"types": [
|
|
17
|
+
"api_key"
|
|
18
|
+
],
|
|
19
|
+
"headers": {
|
|
20
|
+
"X-API-Key": "{{api_key}}"
|
|
21
|
+
},
|
|
22
|
+
"credential_fields": [
|
|
23
|
+
{
|
|
24
|
+
"name": "api_key",
|
|
25
|
+
"label": "Api_key",
|
|
26
|
+
"description": "Moralis API key (from https://admin.moralis.io/api-keys)"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"tools": [
|
|
31
|
+
{
|
|
32
|
+
"name": "get_wallet_balance",
|
|
33
|
+
"description": "Get native token balance (ETH, MATIC, BNB, etc.) for a wallet address.",
|
|
34
|
+
"method": "GET",
|
|
35
|
+
"path": "/get-wallet-balance",
|
|
36
|
+
"input_schema": {
|
|
37
|
+
"type": "object",
|
|
38
|
+
"properties": {
|
|
39
|
+
"address": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "Wallet address (0x...)"
|
|
42
|
+
},
|
|
43
|
+
"chain": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"description": "Chain: eth, polygon, bsc, arbitrum, optimism, base, avalanche",
|
|
46
|
+
"default": "eth"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"required": [
|
|
50
|
+
"address"
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "get_wallet_tokens",
|
|
56
|
+
"description": "Get all ERC20 token balances for a wallet with USD prices.",
|
|
57
|
+
"method": "GET",
|
|
58
|
+
"path": "/get-wallet-tokens",
|
|
59
|
+
"input_schema": {
|
|
60
|
+
"type": "object",
|
|
61
|
+
"properties": {
|
|
62
|
+
"address": {
|
|
63
|
+
"type": "string",
|
|
64
|
+
"description": "Wallet address"
|
|
65
|
+
},
|
|
66
|
+
"chain": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"default": "eth"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"required": [
|
|
72
|
+
"address"
|
|
73
|
+
]
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "get_wallet_history",
|
|
78
|
+
"description": "Get full transaction history for a wallet — transfers, swaps, approvals, decoded with human-readable labels.",
|
|
79
|
+
"method": "GET",
|
|
80
|
+
"path": "/get-wallet-history",
|
|
81
|
+
"input_schema": {
|
|
82
|
+
"type": "object",
|
|
83
|
+
"properties": {
|
|
84
|
+
"address": {
|
|
85
|
+
"type": "string",
|
|
86
|
+
"description": "Wallet address"
|
|
87
|
+
},
|
|
88
|
+
"chain": {
|
|
89
|
+
"type": "string",
|
|
90
|
+
"default": "eth"
|
|
91
|
+
},
|
|
92
|
+
"limit": {
|
|
93
|
+
"type": "integer",
|
|
94
|
+
"default": 25
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"required": [
|
|
98
|
+
"address"
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "get_token_price",
|
|
104
|
+
"description": "Get current USD price for any ERC20 token by contract address.",
|
|
105
|
+
"method": "GET",
|
|
106
|
+
"path": "/get-token-price",
|
|
107
|
+
"input_schema": {
|
|
108
|
+
"type": "object",
|
|
109
|
+
"properties": {
|
|
110
|
+
"address": {
|
|
111
|
+
"type": "string",
|
|
112
|
+
"description": "Token contract address"
|
|
113
|
+
},
|
|
114
|
+
"chain": {
|
|
115
|
+
"type": "string",
|
|
116
|
+
"default": "eth"
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"required": [
|
|
120
|
+
"address"
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "get_token_transfers",
|
|
126
|
+
"description": "Get ERC20 token transfer events for a wallet.",
|
|
127
|
+
"method": "GET",
|
|
128
|
+
"path": "/get-token-transfers",
|
|
129
|
+
"input_schema": {
|
|
130
|
+
"type": "object",
|
|
131
|
+
"properties": {
|
|
132
|
+
"address": {
|
|
133
|
+
"type": "string",
|
|
134
|
+
"description": "Wallet address"
|
|
135
|
+
},
|
|
136
|
+
"chain": {
|
|
137
|
+
"type": "string",
|
|
138
|
+
"default": "eth"
|
|
139
|
+
},
|
|
140
|
+
"limit": {
|
|
141
|
+
"type": "integer",
|
|
142
|
+
"default": 50
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"required": [
|
|
146
|
+
"address"
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "get_defi_positions",
|
|
152
|
+
"description": "Get all DeFi protocol positions (lending, staking, LPs) for a wallet.",
|
|
153
|
+
"method": "GET",
|
|
154
|
+
"path": "/get-defi-positions",
|
|
155
|
+
"input_schema": {
|
|
156
|
+
"type": "object",
|
|
157
|
+
"properties": {
|
|
158
|
+
"address": {
|
|
159
|
+
"type": "string",
|
|
160
|
+
"description": "Wallet address"
|
|
161
|
+
},
|
|
162
|
+
"chain": {
|
|
163
|
+
"type": "string",
|
|
164
|
+
"default": "eth"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"required": [
|
|
168
|
+
"address"
|
|
169
|
+
]
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "get_wallet_net_worth",
|
|
174
|
+
"description": "Get total net worth of a wallet across all chains and tokens.",
|
|
175
|
+
"method": "GET",
|
|
176
|
+
"path": "/get-wallet-net-worth",
|
|
177
|
+
"input_schema": {
|
|
178
|
+
"type": "object",
|
|
179
|
+
"properties": {
|
|
180
|
+
"address": {
|
|
181
|
+
"type": "string",
|
|
182
|
+
"description": "Wallet address"
|
|
183
|
+
},
|
|
184
|
+
"chains": {
|
|
185
|
+
"type": "string",
|
|
186
|
+
"description": "Comma-separated chains (eth,polygon,bsc)",
|
|
187
|
+
"default": "eth,polygon,bsc,arbitrum"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"required": [
|
|
191
|
+
"address"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
}
|