Skip to content

Asset Types

GET
/api/v1/other-assets/types
curl --request GET \
--url https://api.parasta.io/api/v1/other-assets/types \
--header 'Authorization: Bearer <token>'

Get available other asset types (gold, cash, etc.).

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"types": [
{
"id": "gold_silver",
"items": [
"gold",
"silver"
]
},
{
"id": "cash",
"items": [
"KRW",
"USD",
"EUR",
"CNY"
]
},
{
"id": "other",
"items": [
"giftCard",
"art",
"copyright"
]
}
]
}
}