Get Swap Sources - 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/swap-sources
const options = {method: 'GET'};

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

url = "https://api.relay.link/swap-sources"

response = requests.get(url)

print(response.text)

Responses

200

{
  "sources": [
    "<string>"
  ]
}

400

{
  "message": "<string>"
}

Headers

x-api-key

Query Parameters

chainId

Response

200
Content-Type: application/json

Default Response