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
- Type: string
- Description: Optional API key for authentication and higher rate limits.
Query Parameters
chainId
- Type: number
- Description: Chain ID to get swap sources for.
Response
200
Content-Type: application/json
Default Response
- sources: string[]
An array of swap sources.