Exchanges
Get exchanges returns all decentralized exchanges supported.
Get Exchanges
GET https://api.adesic.com/v2/dex
Returns an array of all supported decentralized exchanges.
Query Parameters
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
success-response.json
[
{
"name": "Uniswap",
"id": "uniswap"
}
]Copy & Paste Code
cURL
curl-example.sh
curl -H "api-key: API KEY" https://api.adesic.com/v2/dexResponse Object
Example URL: https://api.adesic.com/v2/dex
response-example.json
[
{
"name": "Uniswap",
"id": "uniswap"
}
]Response Attributes
| Attribute Name | Data Type | Description |
|---|---|---|
| name | string | The official name of the exchange. |
| id | string | Unique exchange identifier used by Adesic. |