Skip to main content

Returns the liquidity sources enabled for the chain

GET 

https://api.fuse.io/api/v1/trade/sources

Returns the liquidity sources enabled for the chain

Request

Responses

An array of liquidity sources
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.fuse.io/api/v1/trade/sources");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.fuse.io
Parameters
— queryrequired
ResponseClear

Click the Send API Request button above and see the response here!

Was this page helpful?