ASIC AFS Licensees as a JSON REST API
The current Australian Financial Services (AFS) licensee register as JSON. Each row returns licence number, holder name, ABN, authorisation date, and authorised activities. Sourced from the ASIC professional registers and refreshed weekly. Validate financial counterparties or build licence-status checks without scraping ASIC Connect.
Endpoint
GEThttps://api.ausdata.io/v1/data/asic/afs-licensees
Sample request
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.ausdata.io/v1/data/asic/afs-licensees?limit=10"Sample response
JSON
{
"data": [
{
"afsl": "123456",
"name": "Example Advisers Pty Ltd",
"abn": "12345678901",
"authorised_from": "2014-08-01",
"authorisations": [
"Financial product advice",
"Dealing"
]
}
],
"meta": {
"endpoint": "/v1/data/asic/afs-licensees",
"source": {
"name": "ASIC",
"url": "https://asic.gov.au/",
"attribution": "(c) ASIC, CC-BY 4.0"
},
"retrieved_at": "<ISO timestamp>"
}
}Response fields
| Field | Type | Description |
|---|---|---|
| afsl | string | AFS licence number |
| name | string | Legal name of the licensee |
| abn | string | Australian Business Number |
| authorised_from | date | Date licence was granted |
| authorisations | string[] | List of authorised activities |
Frequently asked questions
- How do I query the AFS Licensees dataset via API?
- Send a GET request to https://api.ausdata.io/v1/data/asic/afs-licensees with an Authorization: Bearer <your-key> header. The response is JSON with a data array and a meta block containing the source and retrieval timestamp. Get a free key at ausdata.io with 500 calls per month.
- How often is the AFS Licensees data updated?
- The AFS Licensees dataset is refreshed weekly from Australian Securities and Investments Commission (ASIC). The meta.retrieved_at field on every response tells you exactly when the underlying data was last pulled.
- Is there a free tier for the ASIC AFS Licensees API?
- Yes. ausdata.io offers a free tier of 500 calls per month across every endpoint, including AFS Licensees. No credit card required. Paid plans start at $29 AUD per month for 10,000 calls.
- What format does the AFS Licensees API return?
- JSON, with a consistent envelope: a data field carrying the rows or object, and a meta field with the source agency, source URL, attribution string, and retrieved_at timestamp. UTF-8, ISO 8601 dates, CC-BY attribution included on every response.
Start querying ASIC AFS Licensees
500 free calls per month. No credit card.
Get a free key