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
4mo 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 →
asx.com.au API
Access Australian Securities Exchange (ASX) market data, including equity prices, index summaries, company details, market announcements, and company directory listings. Retrieve upcoming IPO and float information alongside comprehensive data on all ASX-listed companies.
serviceseeking.com.au API
Search and browse job postings and local service providers across Australia on ServiceSeeking.com.au. View detailed business profiles, ratings, pricing, and explore hundreds of service categories — from tradespeople to home services and beyond.
marketindex.com.au API
Track ASX stock market data including company information, stock prices, dividends, director transactions, and sector performance. Search for stocks, monitor upcoming dividends, view market announcements, and analyze investment opportunities across the Australian securities exchange.
sedarplus.ca API
sedarplus.ca API
arc-sos.state.al.us API
Search and retrieve detailed information about Alabama business entities, including their registration status, agents, officers, and incorporators. Verify if a business exists and look up specific company details by name or associated contacts.
example-indian-regulatory-site.com API
Search and retrieve penalty data from Indian regulators like SEBI and RBI to discover fines, violation types, and enforcement actions against specific companies or across regulatory bodies. Find detailed information about penalties imposed on entities, browse violation categories, and access comprehensive enforcement records from major Indian financial authorities.
saaustralia.com.au API
Search for solar installer accreditation status and details in Australia by name or installer number, and stay updated with the latest industry news, CPD training courses, and available accreditation categories. Verify installer credentials and professional development opportunities to make informed decisions about solar installation services.
sra.org.uk API
Search for UK solicitors by name and retrieve their detailed registration information from the SRA register, including their SRA number and professional credentials. Browse through the complete solicitor directory to verify qualifications and find regulated legal professionals in the United Kingdom.