@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.
Files changed (48) hide show
  1. package/package.json +1 -1
  2. package/src/apps/alchemy.json +120 -0
  3. package/src/apps/alternative-me.json +55 -0
  4. package/src/apps/apollo.json +3 -3
  5. package/src/apps/apteva-cloud.json +259 -0
  6. package/src/apps/ashby.json +1 -1
  7. package/src/apps/assemblyai.json +1 -1
  8. package/src/apps/bybit.json +192 -0
  9. package/src/apps/callrail.json +1 -1
  10. package/src/apps/cartesia.json +3 -3
  11. package/src/apps/castbase.json +0 -5
  12. package/src/apps/chargebee.json +1 -1
  13. package/src/apps/clicksend.json +1 -1
  14. package/src/apps/coingecko.json +202 -0
  15. package/src/apps/composio.json +8 -3
  16. package/src/apps/confluence.json +1 -1
  17. package/src/apps/debank.json +130 -0
  18. package/src/apps/defillama.json +145 -0
  19. package/src/apps/dune.json +115 -0
  20. package/src/apps/dux-soup.json +1 -1
  21. package/src/apps/dydx.json +151 -0
  22. package/src/apps/elevenlabs.json +59 -10
  23. package/src/apps/gravity-forms.json +2 -2
  24. package/src/apps/harmonic.json +2 -2
  25. package/src/apps/helpscout.json +3 -3
  26. package/src/apps/heyreach.json +3 -3
  27. package/src/apps/hunter.json +5 -4
  28. package/src/apps/hyperliquid.json +129 -0
  29. package/src/apps/jupiter-dex.json +91 -0
  30. package/src/apps/learning-platform.json +3 -3
  31. package/src/apps/luma.json +3 -3
  32. package/src/apps/lunarcrush.json +96 -0
  33. package/src/apps/messari.json +145 -0
  34. package/src/apps/moralis.json +196 -0
  35. package/src/apps/murf-ai.json +340 -0
  36. package/src/apps/okx.json +183 -0
  37. package/src/apps/oneinch.json +94 -0
  38. package/src/apps/paidkit.json +0 -5
  39. package/src/apps/paraswap.json +88 -0
  40. package/src/apps/playht.json +200 -0
  41. package/src/apps/saltedge.json +8 -3
  42. package/src/apps/santiment.json +49 -0
  43. package/src/apps/supabase.json +3 -3
  44. package/src/apps/thegraph.json +59 -0
  45. package/src/apps/trading212.json +1 -1
  46. package/src/apps/wellsaid.json +227 -0
  47. package/src/apps/zapper.json +82 -0
  48. package/src/apps/zerox.json +93 -0
@@ -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
+ }