Assets
Get assets
Authorizations
Query parameters
cursorstringOptional
String value used for pagination
limitinteger · min: 1 · max: 100RequiredDefault:
Maximum number of items to return
20
tradingStatusstring · enumOptionalPossible values:
The status of the asset trading
exchangeCodestring · enumOptionalPossible values:
The exchange the asset is available for trading
isinstringOptional
Filters the list to only show an asset with certain ISIN
Responses
200
OK
application/json
get
GET /trading/assets?limit=20 HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200
OK
{
"data": [
{
"isin": "text",
"wkn": "text",
"assetName": "text",
"assetType": "BOND",
"assetRiskScore": "1",
"fractionalTrading": true,
"exchanges": [
{
"exchangeCode": "TGAT",
"tradingStatus": "ACTIVE"
}
]
}
],
"pagination": {
"cursor": "text",
"limit": 1
}
}
Last updated