Created
June 14, 2025 10:55
-
-
Save rogerhendricks/3a730fcb25c97b72014b02a2abc147d6 to your computer and use it in GitHub Desktop.
Revisions
-
rogerhendricks created this gist
Jun 14, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ # Endpoint providing CSV of listed companies and their tickers asx_companies_csv: https://www.asx.com.au/asx/research/ASXListedCompanies.csv # Endpoint providing XLS spreadsheet of all listed securities and their tickers asx_securities_tsv: https://www.asx.com.au/programs/ISIN.xls # NOTE the extension is xls but the file is actuall tab separated # Endpoint to pull individual companies data asx_company_json: https://www.asx.com.au/asx/1/company/%s?fields=primary_share,latest_annual_reports,last_dividend,primary_share.indices # %s = ticker # Endpoint to pull individual securities data asx_single_json: https://www.asx.com.au/asx/1/share/%s # %s = ticker # OLD; http://data.asx.com.au/data/1/share/%s # Endpoint to pull annoucements asx_announcements_json: https://www.asx.com.au/asx/1/company/%s/announcements?count=20&market_sensitive=true # %s = ticker # Endpoint for pulling historical ASX stock prices floatau_historical_csv: http://float.com.au/download/%s.csv?format=stockeasy # %s = ticker