@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apteva/integrations",
3
- "version": "0.3.23",
3
+ "version": "0.3.25",
4
4
  "description": "Local integrations, connections, and webhooks for Apteva. Self-contained app templates, OAuth engine, and trigger provider.",
5
5
  "author": "Apteva <hello@apteva.com>",
6
6
  "license": "Elastic-2.0",
@@ -0,0 +1,120 @@
1
+ {
2
+ "slug": "alchemy",
3
+ "name": "Alchemy",
4
+ "description": "Blockchain node API + enhanced APIs — token balances, transfers, NFTs, and transaction data across Ethereum, Polygon, Arbitrum, Base, Solana.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=alchemy.com&sz=128",
6
+ "categories": [
7
+ "blockchain",
8
+ "node",
9
+ "web3",
10
+ "tokens",
11
+ "nft",
12
+ "ethereum",
13
+ "solana"
14
+ ],
15
+ "base_url": "",
16
+ "auth": {
17
+ "types": [
18
+ "bearer"
19
+ ],
20
+ "headers": {
21
+ "Authorization": "Bearer {{token}}"
22
+ },
23
+ "credential_fields": [
24
+ {
25
+ "name": "api_key",
26
+ "label": "Api_key",
27
+ "description": "Alchemy API key (from https://dashboard.alchemy.com/)"
28
+ },
29
+ {
30
+ "name": "network",
31
+ "label": "Network",
32
+ "description": "Default network: eth-mainnet, polygon-mainnet, arb-mainnet, opt-mainnet, base-mainnet, sol-mainnet"
33
+ }
34
+ ]
35
+ },
36
+ "tools": [
37
+ {
38
+ "name": "get_token_balances",
39
+ "description": "Get all ERC20 token balances for a wallet address.",
40
+ "method": "POST",
41
+ "path": "/get-token-balances",
42
+ "input_schema": {
43
+ "type": "object",
44
+ "properties": {
45
+ "address": {
46
+ "type": "string",
47
+ "description": "Wallet address (0x...)"
48
+ }
49
+ },
50
+ "required": [
51
+ "address"
52
+ ]
53
+ }
54
+ },
55
+ {
56
+ "name": "get_asset_transfers",
57
+ "description": "Get historical token transfers for an address — inbound, outbound, ERC20, ERC721, internal transactions.",
58
+ "method": "POST",
59
+ "path": "/get-asset-transfers",
60
+ "input_schema": {
61
+ "type": "object",
62
+ "properties": {
63
+ "address": {
64
+ "type": "string",
65
+ "description": "Wallet address"
66
+ },
67
+ "category": {
68
+ "type": "string",
69
+ "description": "Transfer categories: external,internal,erc20,erc721,erc1155",
70
+ "default": "external,erc20"
71
+ },
72
+ "maxCount": {
73
+ "type": "string",
74
+ "description": "Max results (hex, e.g., 0x64 = 100)",
75
+ "default": "0x64"
76
+ },
77
+ "order": {
78
+ "type": "string",
79
+ "enum": [
80
+ "asc",
81
+ "desc"
82
+ ],
83
+ "default": "desc"
84
+ }
85
+ },
86
+ "required": [
87
+ "address"
88
+ ]
89
+ }
90
+ },
91
+ {
92
+ "name": "get_block_number",
93
+ "description": "Get the latest block number on Ethereum.",
94
+ "method": "POST",
95
+ "path": "/get-block-number",
96
+ "input_schema": {
97
+ "type": "object",
98
+ "properties": {}
99
+ }
100
+ },
101
+ {
102
+ "name": "get_token_metadata",
103
+ "description": "Get metadata (name, symbol, decimals, logo) for an ERC20 token by contract address.",
104
+ "method": "POST",
105
+ "path": "/get-token-metadata",
106
+ "input_schema": {
107
+ "type": "object",
108
+ "properties": {
109
+ "contractAddress": {
110
+ "type": "string",
111
+ "description": "Token contract address"
112
+ }
113
+ },
114
+ "required": [
115
+ "contractAddress"
116
+ ]
117
+ }
118
+ }
119
+ ]
120
+ }
@@ -0,0 +1,55 @@
1
+ {
2
+ "slug": "alternative-me",
3
+ "name": "Alternative.me Crypto",
4
+ "description": "Crypto Fear & Greed Index and global market data. Free, no API key needed.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=alternative.me&sz=128",
6
+ "categories": [
7
+ "sentiment",
8
+ "fear-greed",
9
+ "crypto",
10
+ "market-data"
11
+ ],
12
+ "base_url": "https://api.alternative.me/v2",
13
+ "auth": {
14
+ "types": [
15
+ "bearer"
16
+ ],
17
+ "headers": {
18
+ "Authorization": "Bearer {{token}}"
19
+ },
20
+ "credential_fields": [
21
+ {
22
+ "name": "token",
23
+ "label": "Token"
24
+ }
25
+ ]
26
+ },
27
+ "tools": [
28
+ {
29
+ "name": "fear_greed",
30
+ "description": "Get the current Crypto Fear & Greed Index (0-100). Factors: volatility, volume, social media, dominance, trends.",
31
+ "method": "GET",
32
+ "path": "/fng/",
33
+ "input_schema": {
34
+ "type": "object",
35
+ "properties": {
36
+ "limit": {
37
+ "type": "integer",
38
+ "description": "Number of days of data (default 1, max ~3000 for full history)",
39
+ "default": 1
40
+ }
41
+ }
42
+ }
43
+ },
44
+ {
45
+ "name": "global",
46
+ "description": "Get global crypto market cap, BTC dominance, and active currencies count.",
47
+ "method": "GET",
48
+ "path": "/global/",
49
+ "input_schema": {
50
+ "type": "object",
51
+ "properties": {}
52
+ }
53
+ }
54
+ ]
55
+ }
@@ -0,0 +1,192 @@
1
+ {
2
+ "slug": "bybit",
3
+ "name": "Bybit",
4
+ "description": "Major crypto exchange — spot and derivatives market data, orderbooks, candles, tickers, and account management.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=bybit.com&sz=128",
6
+ "categories": [
7
+ "crypto",
8
+ "exchange",
9
+ "trading",
10
+ "derivatives",
11
+ "perpetuals"
12
+ ],
13
+ "base_url": "",
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": "Bybit API key"
26
+ },
27
+ {
28
+ "name": "api_secret",
29
+ "label": "Api_secret",
30
+ "description": "Bybit API secret"
31
+ },
32
+ {
33
+ "name": "testnet",
34
+ "label": "Testnet",
35
+ "description": "Set to true to use testnet (api-testnet.bybit.com)"
36
+ }
37
+ ]
38
+ },
39
+ "tools": [
40
+ {
41
+ "name": "get_tickers",
42
+ "description": "Get ticker data for all or specific trading pairs. Category: spot, linear (USDT perps), inverse.",
43
+ "method": "GET",
44
+ "path": "/get-tickers",
45
+ "input_schema": {
46
+ "type": "object",
47
+ "properties": {
48
+ "category": {
49
+ "type": "string",
50
+ "enum": [
51
+ "spot",
52
+ "linear",
53
+ "inverse"
54
+ ],
55
+ "default": "spot"
56
+ },
57
+ "symbol": {
58
+ "type": "string",
59
+ "description": "Trading pair (e.g., BTCUSDT). Omit for all tickers."
60
+ }
61
+ }
62
+ }
63
+ },
64
+ {
65
+ "name": "get_kline",
66
+ "description": "Get OHLCV kline data for a trading pair.",
67
+ "method": "GET",
68
+ "path": "/get-kline",
69
+ "input_schema": {
70
+ "type": "object",
71
+ "properties": {
72
+ "category": {
73
+ "type": "string",
74
+ "enum": [
75
+ "spot",
76
+ "linear",
77
+ "inverse"
78
+ ],
79
+ "default": "spot"
80
+ },
81
+ "symbol": {
82
+ "type": "string",
83
+ "description": "Trading pair (e.g., BTCUSDT)"
84
+ },
85
+ "interval": {
86
+ "type": "string",
87
+ "enum": [
88
+ "1",
89
+ "3",
90
+ "5",
91
+ "15",
92
+ "30",
93
+ "60",
94
+ "120",
95
+ "240",
96
+ "360",
97
+ "720",
98
+ "D",
99
+ "W",
100
+ "M"
101
+ ],
102
+ "default": "60"
103
+ },
104
+ "limit": {
105
+ "type": "integer",
106
+ "default": 200,
107
+ "description": "Max results (1-1000)"
108
+ }
109
+ },
110
+ "required": [
111
+ "symbol"
112
+ ]
113
+ }
114
+ },
115
+ {
116
+ "name": "get_orderbook",
117
+ "description": "Get order book depth for a trading pair.",
118
+ "method": "GET",
119
+ "path": "/get-orderbook",
120
+ "input_schema": {
121
+ "type": "object",
122
+ "properties": {
123
+ "category": {
124
+ "type": "string",
125
+ "enum": [
126
+ "spot",
127
+ "linear",
128
+ "inverse"
129
+ ],
130
+ "default": "spot"
131
+ },
132
+ "symbol": {
133
+ "type": "string"
134
+ },
135
+ "limit": {
136
+ "type": "integer",
137
+ "default": 25
138
+ }
139
+ },
140
+ "required": [
141
+ "symbol"
142
+ ]
143
+ }
144
+ },
145
+ {
146
+ "name": "get_instruments",
147
+ "description": "Get trading pair specifications — lot sizes, price filters, leverage, and trading status.",
148
+ "method": "GET",
149
+ "path": "/get-instruments",
150
+ "input_schema": {
151
+ "type": "object",
152
+ "properties": {
153
+ "category": {
154
+ "type": "string",
155
+ "enum": [
156
+ "spot",
157
+ "linear",
158
+ "inverse"
159
+ ],
160
+ "default": "spot"
161
+ },
162
+ "symbol": {
163
+ "type": "string",
164
+ "description": "Specific pair (optional)"
165
+ }
166
+ }
167
+ }
168
+ },
169
+ {
170
+ "name": "get_funding_rate",
171
+ "description": "Get funding rate history for perpetual contracts.",
172
+ "method": "GET",
173
+ "path": "/get-funding-rate",
174
+ "input_schema": {
175
+ "type": "object",
176
+ "properties": {
177
+ "symbol": {
178
+ "type": "string",
179
+ "description": "Perpetual pair (e.g., BTCUSDT)"
180
+ },
181
+ "limit": {
182
+ "type": "integer",
183
+ "default": 50
184
+ }
185
+ },
186
+ "required": [
187
+ "symbol"
188
+ ]
189
+ }
190
+ }
191
+ ]
192
+ }
@@ -25,11 +25,6 @@
25
25
  "name": "api_key",
26
26
  "label": "Api_key",
27
27
  "description": "CastBase API Key (from your project dashboard)"
28
- },
29
- {
30
- "name": "project_id",
31
- "label": "Project_id",
32
- "description": "Default project ID for podcast operations"
33
28
  }
34
29
  ]
35
30
  },
@@ -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
+ }