List EOFY Closing Prices
curl --request GET \
--url https://app.digitalsurge.com.au/api/public/broker/eofy-closing-prices/import requests
url = "https://app.digitalsurge.com.au/api/public/broker/eofy-closing-prices/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.digitalsurge.com.au/api/public/broker/eofy-closing-prices/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"year": 123,
"asset": "<string>",
"price": "<string>"
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Public
List EOFY Closing Prices
Australian end-of-financial-year closing prices, by asset and year.
Useful for tax-year reporting. Filter by year and asset to narrow
the results.
GET
/
api
/
public
/
broker
/
eofy-closing-prices
/
List EOFY Closing Prices
curl --request GET \
--url https://app.digitalsurge.com.au/api/public/broker/eofy-closing-prices/import requests
url = "https://app.digitalsurge.com.au/api/public/broker/eofy-closing-prices/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.digitalsurge.com.au/api/public/broker/eofy-closing-prices/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"year": 123,
"asset": "<string>",
"price": "<string>"
}
],
"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.