Get token prices (KRW conversion)
GET
/v1/asset/prices
const url = 'https://api.parasta.io/v1/asset/prices';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.parasta.io/v1/asset/pricesResponses
Section titled “ Responses ”OK
Media type application/json
object
prices
Array<object>
object
tokenId
string
symbol
string
priceKrw
string
type
string
updatedAt
string format: date-time
baseCurrency
string
Example
{ "prices": [ { "type": "system" } ], "baseCurrency": "KRW"}