@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,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
|
+
}
|