Get Asset Category
curl --request GET \
--url https://app.digitalsurge.com.au/api/public/broker/assets/categories/{slug}/import requests
url = "https://app.digitalsurge.com.au/api/public/broker/assets/categories/{slug}/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.digitalsurge.com.au/api/public/broker/assets/categories/{slug}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"slug": "<string>",
"name": "<string>",
"asset_count": 123,
"description": "<string>",
"rank": 1073741823
}Public
Get Asset Category
Asset categories used to group the catalogue (for example DeFi, Layer 1, Stablecoins).
Listing always starts with a synthetic “All Assets” entry, followed by the configured categories. Each category reports how many visible, tradeable assets it contains.
GET
/
api
/
public
/
broker
/
assets
/
categories
/
{slug}
/
Get Asset Category
curl --request GET \
--url https://app.digitalsurge.com.au/api/public/broker/assets/categories/{slug}/import requests
url = "https://app.digitalsurge.com.au/api/public/broker/assets/categories/{slug}/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.digitalsurge.com.au/api/public/broker/assets/categories/{slug}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"slug": "<string>",
"name": "<string>",
"asset_count": 123,
"description": "<string>",
"rank": 1073741823
}Path Parameters
A unique value identifying this Virtual Asset Category.