List Asset Categories
curl --request GET \
--url https://app.digitalsurge.com.au/api/public/broker/assets/categories/import requests
url = "https://app.digitalsurge.com.au/api/public/broker/assets/categories/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.digitalsurge.com.au/api/public/broker/assets/categories/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"slug": "<string>",
"name": "<string>",
"asset_count": 123,
"description": "<string>",
"rank": 1073741823
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Public
List Asset Categories
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
/
List Asset Categories
curl --request GET \
--url https://app.digitalsurge.com.au/api/public/broker/assets/categories/import requests
url = "https://app.digitalsurge.com.au/api/public/broker/assets/categories/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.digitalsurge.com.au/api/public/broker/assets/categories/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"slug": "<string>",
"name": "<string>",
"asset_count": 123,
"description": "<string>",
"rank": 1073741823
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Query Parameters
A page number within the paginated result set.
Number of results to return per page.