Skip to main content

REST API Settings - Get assets

Get assets

Written by Albert
Updated over 2 weeks ago

Get assets

GET /frontoffice/api/v3/assets

Summary

Use this method to retrieve a list of available assets on the platform.

Request

No request parameters.

Request example

GET /frontoffice/api/v3/assets HTTP/1.1
Host: {host}
Authorization: Bearer JWT
Accept: */*

Response

In case of success, an array of objects will be returned.

Each object contains the following information:

assetId string

The asset identifier.

assetName string

The asset display name.

isRootAsset boolean

Indicates whether this is a root asset.

Response example β€” 200: OK

[
{
"assetId": "usdt",
"assetName": "Tether",
"isRootAsset": true
},
{
"assetId": "xrp",
"assetName": "Ripple",
"isRootAsset": false
}
]

Did this answer your question?