Top Assets Summary
curl --request GET \
--url https://app.digitalsurge.com.au/api/public/broker/ticker/top-assets-summary/import requests
url = "https://app.digitalsurge.com.au/api/public/broker/ticker/top-assets-summary/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.digitalsurge.com.au/api/public/broker/ticker/top-assets-summary/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"topGainers": [
{
"symbol": "<string>",
"name": "<string>",
"buy": "<string>",
"sell": "<string>",
"gain": "<string>",
"market_cap": 123,
"in_discovery_zone": true
}
],
"newlyListed": [
{
"symbol": "<string>",
"name": "<string>",
"buy": "<string>",
"sell": "<string>",
"gain": "<string>",
"market_cap": 123,
"in_discovery_zone": true
}
],
"topTraded": [
{
"symbol": "<string>",
"name": "<string>",
"buy": "<string>",
"sell": "<string>",
"gain": "<string>",
"market_cap": 123,
"in_discovery_zone": true
}
],
"topLosers": [
{
"symbol": "<string>",
"name": "<string>",
"buy": "<string>",
"sell": "<string>",
"gain": "<string>",
"market_cap": 123,
"in_discovery_zone": true
}
]
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Public
Top Assets Summary
Curated summary of top gainers, top losers, newly listed, and most traded assets.
Returns four short lists intended for a market overview screen. Each
list contains up to six assets by default; use count to change the
per-list size.
GET
/
api
/
public
/
broker
/
ticker
/
top-assets-summary
/
Top Assets Summary
curl --request GET \
--url https://app.digitalsurge.com.au/api/public/broker/ticker/top-assets-summary/import requests
url = "https://app.digitalsurge.com.au/api/public/broker/ticker/top-assets-summary/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.digitalsurge.com.au/api/public/broker/ticker/top-assets-summary/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"topGainers": [
{
"symbol": "<string>",
"name": "<string>",
"buy": "<string>",
"sell": "<string>",
"gain": "<string>",
"market_cap": 123,
"in_discovery_zone": true
}
],
"newlyListed": [
{
"symbol": "<string>",
"name": "<string>",
"buy": "<string>",
"sell": "<string>",
"gain": "<string>",
"market_cap": 123,
"in_discovery_zone": true
}
],
"topTraded": [
{
"symbol": "<string>",
"name": "<string>",
"buy": "<string>",
"sell": "<string>",
"gain": "<string>",
"market_cap": 123,
"in_discovery_zone": true
}
],
"topLosers": [
{
"symbol": "<string>",
"name": "<string>",
"buy": "<string>",
"sell": "<string>",
"gain": "<string>",
"market_cap": 123,
"in_discovery_zone": true
}
]
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Query Parameters
Number of assets per category (default: 6)
A page number within the paginated result set.
Number of results to return per page.