Discover/service.asic.gov.au API
live

service.asic.gov.au APIservice.asic.gov.au

Search and retrieve data from ASIC Professional Registers. Access AFS licensees, credit licensees, liquidators, auditors, and managed investment schemes via 9 endpoints.

Endpoints
9
Updated
3mo ago
Try it
Max results per page.
Search keyword (name, licence number, registration number, ACN, or ABN).
Pagination start index.
api.parse.bot/scraper/8f9d3da2-2f63-41cf-ac7a-fdf8daf6c8da/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8f9d3da2-2f63-41cf-ac7a-fdf8daf6c8da/search_entities?limit=5&query=Vanguard&start_index=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 9 totalclick to expand

Search the ASIC Professional Registers by name, licence number, registration number, ACN, or ABN. Returns paginated results with entity summary information.

Input
ParamTypeDescription
limitintegerMax results per page.
queryrequiredstringSearch keyword (name, licence number, registration number, ACN, or ABN).
start_indexintegerPagination start index.
Response
{
  "type": "object",
  "fields": {
    "items": "array of entity summary objects with LicenceNumber, Name, PermissionType, Status, State, ABN, PrincipalAddress, CommencedDate, EntityType, ARSN",
    "limit": "integer echoed page size",
    "query": "string echoed search query",
    "start_index": "integer echoed pagination offset",
    "total_records": "integer total matching records"
  },
  "sample": {
    "data": {
      "items": [
        {
          "ABN": "48123123124",
          "ARSN": "",
          "Name": "COMMONWEALTH BANK OF AUSTRALIA",
          "State": "NSW",
          "Status": "Current",
          "EntityType": "Organisation",
          "CommencedDate": "01/12/2003",
          "LicenceNumber": "234945",
          "PermissionType": "Australian financial services licensees",
          "PrincipalAddress": "ROBERTO BIANCO 'COMMONWEALTH BANK PLACE SOUTH' L 1 11 HARBOUR ST SYDNEY NSW 2000",
          "RedirectUrl_Calc": "/EntityDetail?LicenceNumber=234945&licenceName=COMMONWEALTH BANK OF AUSTRALIA&PermissionType=Australian financial services licensees"
        }
      ],
      "limit": 5,
      "query": "Commonwealth Bank",
      "start_index": 0,
      "total_records": 3
    },
    "status": "success"
  }
}

About the service.asic.gov.au API

The ASIC Professional Registers API exposes 9 endpoints for searching and retrieving records from Australia's regulatory register of financial professionals and entities. Use search_entities to find any registrant by name, ACN, ABN, or licence number, then drill into type-specific endpoints like get_afs_licensee_details or get_managed_investment_scheme_details to retrieve licence conditions, business names, addresses, status, and responsible entity information.

What the API Covers

The API maps directly to the ASIC Professional Registers Search database, which covers six register types: Australian Financial Services (AFS) licensees, credit licensees, credit representatives, registered liquidators, registered auditors, and managed investment schemes. Every record is reachable through search_entities, which accepts a query string (name, licence number, registration number, ACN, or ABN) and returns paginated summaries including LicenceNumber, Name, PermissionType, Status, State, ABN, PrincipalAddress, and CommencedDate. Pagination is controlled via limit and start_index, and total_records is returned so you can calculate page depth.

Type-Specific Detail Endpoints

Once you have an identifier from search results, seven detail endpoints return record-specific fields. get_afs_licensee_details and get_credit_licensee_details both return licenceStatus, LicenceConditions, BusinessNames, licenceAbn, and LicencePrincipalBusinessAddresses. get_liquidator_details additionally returns FirmNames and liquidatorState. get_auditor_details exposes a Roles list alongside standard licence fields. get_managed_investment_scheme_details returns the ARSN (mismArsn), NamesHistory for former scheme names, mismArfpRespEntityName for the responsible entity, and mismArfpRegistrationDate. The general-purpose get_entity_details endpoint accepts licence_name, licence_number, and permission_type and returns the full record including EDR (External Dispute Resolution) and Roles lists not always surfaced in the type-specific shortcuts.

Register Types and Identifiers

Each register type uses a different primary identifier. AFS and credit licensees use a licence number; liquidators and auditors use a registration number; managed investment schemes use an ARSN. Credit representatives use a representative number passed via the rep_number parameter in get_credit_representative_details. Passing the wrong identifier type will not return results, so consuming PermissionType from search_entities output before calling a detail endpoint is recommended.

Data Freshness and Coverage

The data reflects ASIC's register as maintained by the regulator. Licence status values (active, cancelled, suspended, etc.) come directly from the register records. The licenceCommencedDate field in get_entity_details is returned in DD/MM/YYYY format. Historical records for cancelled or revoked registrations remain searchable.

Common use cases
  • Verify an AFS licensee's current status and licence conditions before engaging them as a financial adviser
  • Look up whether a credit representative's registration is active using their representative number
  • Retrieve the responsible entity name for a managed investment scheme using its ARSN
  • Check a registered liquidator's state and firm affiliations during insolvency due diligence
  • Build a compliance tool that cross-references counterparty ABNs against the ASIC register
  • Monitor licence status changes for a portfolio of credit licensees by polling search results
  • Retrieve EDR scheme membership for AFS licensees via the full get_entity_details endpoint
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does ASIC provide an official developer API for the Professional Registers?+
ASIC does not publish a documented public developer API for the Professional Registers Search. The register is accessible through the search interface at service.asic.gov.au, and this Parse API provides structured programmatic access to that data.
What does get_entity_details return that the type-specific endpoints do not?+
get_entity_details returns two additional objects not present in most type-specific shortcuts: an EDR list (External Dispute Resolution scheme memberships) and a Roles list. It also returns licenceCommencedDt in DD/MM/YYYY format. To use it, you must supply licence_name, licence_number, and permission_type exactly as returned from search_entities.
How does pagination work in search_entities?+
search_entities accepts limit (max results per page) and start_index (offset). The response echoes both values alongside total_records, which tells you the full match count. To walk through all results, increment start_index by your limit value on each successive call until start_index exceeds total_records.
Does the API return historical licence or registration records for deregistered entities?+
Cancelled, revoked, and suspended registrations remain searchable and are returned with their current licenceStatus value. The API does not currently expose an audit history or changelog of status transitions over time. You can fork this API on Parse and revise it to add an endpoint tracking status changes if your workflow requires that.
Does the API cover ASIC company registrations or the Companies Register?+
No. The API covers only the six Professional Registers (AFS licensees, credit licensees, credit representatives, liquidators, auditors, managed investment schemes). Company registration data from the ASIC Companies Register — including ACN lookups and company officeholder records — is not included. You can fork this API on Parse and revise it to add endpoints targeting that register.
Page content last updated . Spec covers 9 endpoints from service.asic.gov.au.
Related APIs in Government PublicSee all →
identify.plantnet.org API
Identify and explore plant species by searching through Pl@ntNet's comprehensive botanical database to access detailed information like taxonomic families, genera, species descriptions, photos, and community observations. Track plant distributions, view contribution trends, and discover expert contributors within the platform's collaborative plant identification community.
data.lime.bike API
Access real-time availability data for Lime bikes and scooters, including station locations, vehicle status, system alerts, and geofencing zones across multiple cities. Monitor micromobility inventory and service information to find nearby vehicles or plan your trips effectively.
accessdata.fda.gov API
Search and retrieve comprehensive FDA premarket approval information for medical devices, including approval status, supplements, applicant details, and advisory committee data. Get instant access to specific PMA records with all relevant approval information in one place.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
mahatenders.gov.in API
Access Maharashtra government tenders from mahatenders.gov.in, browsing them by closing date or by organization with full tender details and pagination support. Find and review procurement opportunities across different government departments in one place.