List Exchange Accounts
GET
/api/v1/exchange-accounts
const url = 'https://api.qeychain.xyz/api/v1/exchange-accounts';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.qeychain.xyz/api/v1/exchange-accountsList all connected exchange accounts for the current user.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example