Get Config - Relay

Documentation Index

Fetch the complete documentation index at: /llms.txt

Use this file to discover all available pages before exploring further.

cURL

curl --request GET \
  --url https://api.relay.link/config/v2
const options = {method: 'GET'};

fetch('https://api.relay.link/config/v2', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
import requests

url = "https://api.relay.link/config/v2"

response = requests.get(url)

print(response.text)

Response Codes

{
  "enabled": true,
  "user": {
    "balance": "<string>",
    "maxBridgeAmount": "<string>"
  },
  "fee": "<string>",
  "solver": {
    "address": "<string>",
    "balance": "<string>",
    "capacityPerRequest": "<string>"
  },
  "supportsExternalLiquidity": true
}
{
  "message": "<string>",
  "code": "<string>"
}

API Note

This API has been replaced by the Get Quote API, which supports bridging, swapping and calling through a single unified API.

Query Parameters

Available options: anime, btc, cgt, dai, degen, eth, omi, pop, tg7, tia, usdc, usdc.e, usdt, sol, weth, apeeth, ape, g7, pengu, plume, plumeusd, gun, somi, synd, xpl, usde, mon, usdh, musd, usdm, pyusd, cash, eusd, pusd, bnb, usdg, usdc.e-cronos

Response

Default Response