Tokenized Assets
Get list of available products
Authorizations
HTTPRequired
Query parameters
cursorstringOptional
String value used for pagination
limitinteger · min: 1 · max: 100OptionalDefault:
Maximum number of items to return
20Responses
200
OK
application/json
400
Bad Request
application/json
get
/wawex/assetsGET /wawex/assets HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"symbol": "text",
"description": "text",
"assetType": "CRYPTOCURRENCY",
"decimalPlaces": 1,
"availableFrom": "2025-12-05T14:45:03.549Z",
"availableTo": "2025-12-05T14:45:03.549Z",
"assetRiskScore": "0"
}
],
"pagination": {
"cursor": "text",
"limit": 1
}
}Get current price for a specific token
Authorizations
HTTPRequired
Path parameters
tokenstringRequired
Token symbol
Responses
200
OK
application/json
400
Bad Request
application/json
404
Not Found
application/json
get
/wawex/prices/{token}GET /wawex/prices/{token} HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"ask": 1,
"bid": 1,
"currency": "text"
}Last updated

