Get My Assets
GET
/api/v1/assets/my
const url = 'https://api.parasta.io/api/v1/assets/my';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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.parasta.io/api/v1/assets/my \ --header 'Authorization: Bearer <token>'Get user’s Link Bank assets for transfer.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
Example
{ "status": "ok", "data": { "assets": [ { "code": "KRW", "amount": 500000 }, { "code": "BTC", "amount": 0.05 }, { "code": "USDT", "amount": 1000 } ] }}