@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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apteva/integrations",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.27",
|
|
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
|
+
}
|
package/src/apps/apollo.json
CHANGED
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"base_url": "https://api.apollo.io/api/v1",
|
|
15
15
|
"auth": {
|
|
16
16
|
"types": [
|
|
17
|
-
"
|
|
17
|
+
"api_key"
|
|
18
18
|
],
|
|
19
19
|
"headers": {
|
|
20
|
-
"
|
|
20
|
+
"x-api-key": "{{api_key}}"
|
|
21
21
|
},
|
|
22
22
|
"credential_fields": [
|
|
23
23
|
{
|
|
24
|
-
"name": "
|
|
24
|
+
"name": "api_key",
|
|
25
25
|
"label": "Api Key",
|
|
26
26
|
"description": "Apollo.io API key (find at app.apollo.io under Settings > Integrations > API)"
|
|
27
27
|
}
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "apteva-cloud",
|
|
3
|
+
"name": "Apteva Cloud",
|
|
4
|
+
"description": "Manage Apteva Cloud hosting instances — create, start, stop, restart, update, delete, and view logs for containerized deployments",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=apteva.ai&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"cloud",
|
|
8
|
+
"hosting",
|
|
9
|
+
"containers",
|
|
10
|
+
"deployment",
|
|
11
|
+
"infrastructure"
|
|
12
|
+
],
|
|
13
|
+
"base_url": "https://api.apteva.ai/apteva-cloud",
|
|
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": "Apteva API Key (from your Apteva dashboard)"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "create_instance",
|
|
32
|
+
"description": "Create a new Apteva Cloud instance with a unique subdomain, auto-SSL, and persistent storage. Instance will be available at {subdomain}.apteva.ai",
|
|
33
|
+
"method": "POST",
|
|
34
|
+
"path": "/instances",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {
|
|
38
|
+
"name": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"description": "Name for the instance (required)"
|
|
41
|
+
},
|
|
42
|
+
"subdomain": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "Subdomain for the instance (required). Will be accessible at {subdomain}.apteva.ai. Lowercase letters, numbers, and hyphens only."
|
|
45
|
+
},
|
|
46
|
+
"organization_id": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "Organization ID for billing and feature usage"
|
|
49
|
+
},
|
|
50
|
+
"version": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"default": "latest",
|
|
53
|
+
"description": "Apteva platform version tag to deploy"
|
|
54
|
+
},
|
|
55
|
+
"memory": {
|
|
56
|
+
"type": "integer",
|
|
57
|
+
"default": 512,
|
|
58
|
+
"description": "Memory allocation in MB"
|
|
59
|
+
},
|
|
60
|
+
"cpu": {
|
|
61
|
+
"type": "number",
|
|
62
|
+
"default": 0.5,
|
|
63
|
+
"description": "CPU allocation (e.g., 0.5 = half core)"
|
|
64
|
+
},
|
|
65
|
+
"env_vars": {
|
|
66
|
+
"type": "object",
|
|
67
|
+
"description": "Custom environment variables for the instance"
|
|
68
|
+
},
|
|
69
|
+
"config": {
|
|
70
|
+
"type": "object",
|
|
71
|
+
"description": "Additional configuration options"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"required": [
|
|
75
|
+
"name",
|
|
76
|
+
"subdomain"
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "list_instances",
|
|
82
|
+
"description": "List all Apteva Cloud instances with optional filtering by status, user, or project",
|
|
83
|
+
"method": "GET",
|
|
84
|
+
"path": "/instances",
|
|
85
|
+
"input_schema": {
|
|
86
|
+
"type": "object",
|
|
87
|
+
"properties": {
|
|
88
|
+
"status": {
|
|
89
|
+
"type": "string",
|
|
90
|
+
"enum": [
|
|
91
|
+
"running",
|
|
92
|
+
"stopped",
|
|
93
|
+
"creating",
|
|
94
|
+
"failed"
|
|
95
|
+
],
|
|
96
|
+
"description": "Filter by instance status"
|
|
97
|
+
},
|
|
98
|
+
"user_id": {
|
|
99
|
+
"type": "string",
|
|
100
|
+
"description": "Filter by user ID"
|
|
101
|
+
},
|
|
102
|
+
"organization_id": {
|
|
103
|
+
"type": "string",
|
|
104
|
+
"description": "Filter by organization ID"
|
|
105
|
+
},
|
|
106
|
+
"limit": {
|
|
107
|
+
"type": "integer",
|
|
108
|
+
"default": 50,
|
|
109
|
+
"description": "Max results to return"
|
|
110
|
+
},
|
|
111
|
+
"offset": {
|
|
112
|
+
"type": "integer",
|
|
113
|
+
"default": 0,
|
|
114
|
+
"description": "Offset for pagination"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "get_instance",
|
|
121
|
+
"description": "Get details and live status of a specific Apteva Cloud instance including container health",
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"path": "/instances/{id}",
|
|
124
|
+
"input_schema": {
|
|
125
|
+
"type": "object",
|
|
126
|
+
"properties": {
|
|
127
|
+
"id": {
|
|
128
|
+
"type": "string",
|
|
129
|
+
"description": "Instance ID (required)"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"required": [
|
|
133
|
+
"id"
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "update_instance",
|
|
139
|
+
"description": "Update instance configuration — name, version, memory, CPU, env vars. Version or resource changes trigger a container redeployment with data preserved.",
|
|
140
|
+
"method": "PUT",
|
|
141
|
+
"path": "/instances/{id}",
|
|
142
|
+
"input_schema": {
|
|
143
|
+
"type": "object",
|
|
144
|
+
"properties": {
|
|
145
|
+
"id": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "Instance ID (required)"
|
|
148
|
+
},
|
|
149
|
+
"name": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"description": "New instance name"
|
|
152
|
+
},
|
|
153
|
+
"version": {
|
|
154
|
+
"type": "string",
|
|
155
|
+
"description": "New version tag to deploy (triggers container update)"
|
|
156
|
+
},
|
|
157
|
+
"memory": {
|
|
158
|
+
"type": "integer",
|
|
159
|
+
"description": "New memory allocation in MB (triggers container update)"
|
|
160
|
+
},
|
|
161
|
+
"cpu": {
|
|
162
|
+
"type": "number",
|
|
163
|
+
"description": "New CPU allocation (triggers container update)"
|
|
164
|
+
},
|
|
165
|
+
"env_vars": {
|
|
166
|
+
"type": "object",
|
|
167
|
+
"description": "Environment variables to add/update (merged with existing)"
|
|
168
|
+
},
|
|
169
|
+
"config": {
|
|
170
|
+
"type": "object",
|
|
171
|
+
"description": "Configuration to add/update (merged with existing)"
|
|
172
|
+
},
|
|
173
|
+
"force": {
|
|
174
|
+
"type": "boolean",
|
|
175
|
+
"default": false,
|
|
176
|
+
"description": "Force container redeployment even if no version/resource changes"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"required": [
|
|
180
|
+
"id"
|
|
181
|
+
]
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "instance_action",
|
|
186
|
+
"description": "Perform an action on an instance: start, stop, restart, or redeploy. Redeploy preserves all persistent data.",
|
|
187
|
+
"method": "POST",
|
|
188
|
+
"path": "/instances/{id}/action",
|
|
189
|
+
"input_schema": {
|
|
190
|
+
"type": "object",
|
|
191
|
+
"properties": {
|
|
192
|
+
"id": {
|
|
193
|
+
"type": "string",
|
|
194
|
+
"description": "Instance ID (required)"
|
|
195
|
+
},
|
|
196
|
+
"action": {
|
|
197
|
+
"type": "string",
|
|
198
|
+
"enum": [
|
|
199
|
+
"start",
|
|
200
|
+
"stop",
|
|
201
|
+
"restart",
|
|
202
|
+
"redeploy"
|
|
203
|
+
],
|
|
204
|
+
"description": "Action to perform (required)"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"required": [
|
|
208
|
+
"id",
|
|
209
|
+
"action"
|
|
210
|
+
]
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "delete_instance",
|
|
215
|
+
"description": "Permanently delete an instance — stops container, removes domain routing, and cleans up all associated resources",
|
|
216
|
+
"method": "DELETE",
|
|
217
|
+
"path": "/instances/{id}",
|
|
218
|
+
"input_schema": {
|
|
219
|
+
"type": "object",
|
|
220
|
+
"properties": {
|
|
221
|
+
"id": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"description": "Instance ID to delete (required)"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"required": [
|
|
227
|
+
"id"
|
|
228
|
+
]
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "instance_logs",
|
|
233
|
+
"description": "Retrieve container logs for an instance with optional time filtering and tail length",
|
|
234
|
+
"method": "GET",
|
|
235
|
+
"path": "/instances/{id}/logs",
|
|
236
|
+
"input_schema": {
|
|
237
|
+
"type": "object",
|
|
238
|
+
"properties": {
|
|
239
|
+
"id": {
|
|
240
|
+
"type": "string",
|
|
241
|
+
"description": "Instance ID (required)"
|
|
242
|
+
},
|
|
243
|
+
"since": {
|
|
244
|
+
"type": "string",
|
|
245
|
+
"description": "Show logs since timestamp (ISO 8601) or relative (e.g., '1h', '30m')"
|
|
246
|
+
},
|
|
247
|
+
"tail": {
|
|
248
|
+
"type": "integer",
|
|
249
|
+
"default": 100,
|
|
250
|
+
"description": "Number of lines to return from the end"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"required": [
|
|
254
|
+
"id"
|
|
255
|
+
]
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
]
|
|
259
|
+
}
|
package/src/apps/ashby.json
CHANGED
package/src/apps/assemblyai.json
CHANGED
|
@@ -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
|
+
}
|