Tokenized Assets

Get price for token

get
/wawex/prices/{token}

Get current price for a specific token

Authorizations
Path parameters
tokenstringRequired

Token symbol

Responses
200

OK

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"
}

Get products

get
/wawex/products

Get list of available products

Authorizations
Query parameters
cursorstringOptional

String value used for pagination

limitinteger · min: 1 · max: 100Optional

Maximum number of items to return

Default: 20
Responses
200

OK

application/json
get
/wawex/products
GET /wawex/products 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-10-23T18:19:07.482Z",
      "availableTo": "2025-10-23T18:19:07.482Z",
      "assetRiskScore": "0"
    }
  ],
  "pagination": {
    "cursor": "text",
    "limit": 1
  }
}

Last updated