asicapidocs

ASIC weekly summary types and sub-types

Reference for ASIC weekly summary type codes RE, NA, EX, LC, DI and MI and sub-type codes such as REGN, EXAL and DISQ, mapped to asicapi weekly summary slugs.

Each week ASIC publishes summaries of what changed on its registers: companies registered, companies renamed, external administrations commenced, professional licences granted, directors disqualified and managed investment schemes registered. asicapi exposes these as purchased weekly summary extracts identified by readable type slugs, but every item still carries ASIC's own type and sub-type codes so you can tell a voluntary liquidation from a court winding up, or a new registration from a reinstatement. Weekly summaries are the most efficient way to monitor the register for new companies in a postcode or new insolvency appointments without polling individual companies.

Where it appears in the API

  • type in the body of POST /v1/weekly-summaries is one of the slugs below, each mapping to a code in the weekly summary types table. The purchase returns a weekly summary extract with summaryType, weekStarting, items and postcodeTotals; GET /v1/weekly-summaries/{id} and GET /v1/weekly-summaries?type=&weekStarting= read the extracts you hold for free. See purchasing.
  • weeklySummaryItem.subType on every item uses the weekly summary sub-types table.
  • weekStarting (a Monday within the last 12 months) selects the week at purchase; the optional postcode query parameter filters the items when you read the extract.
  • postcodeTotals[] on a new-registrations extract gives counts per postcode for the week.
  • meta.product is weekly_summary on the purchase response. Buying the same type and week again returns the copy you already hold, without a fee, unless you pass "refresh": true.

Weekly summary types

CodeMeaning
DIDisqualified Directors
EXExternal administrations
LCLicences granted
NAChanges of company name
RERegistration of new companies
MINewly Registered Managed Investment Schemes

6 codes. Source: the "Weekly summary types" table in ASIC's Datastream specification.

Weekly summary sub-types

CodeMeaning
CHGTChange of Company Type
DISQDisqualified Directors
DRGDCompany Deregistration
EXACAdministrator of a Company Under Administration
EXADAdministrator of a Deed of Company Arrangement
EXALAppointment of a Liquidator
EXCQNotice of Order Winding Up
EXMNAppointment of Scheme Manager Under Part 5.1
EXRCAppointment of Controller
EXRQResolution of Winding Up
LCFBRegistration of a Futures Broker
LCFDRegistration of a Futures Adviser
LCFLRegistration as an Australian Financial Services Licensee
LCIARegistration of an Investment Adviser
LCOQRegistration as an Official Liquidator
LCRARegistration as an Auditor
LCRQRegistration as a Liquidator
LCSDRegistration as a Securities Dealer
MISMNewly Registered Managed Investment Schemes
NAMEChanges of Company Name
REGNRegistrations of New Companies
REINCompany Reinstatement

22 codes. Source: the "Weekly summary sub-types" table in ASIC's Datastream specification.

API slugs, type codes and sub-types

SlugASIC typeSub-types the list can containItem fields populated
new-registrationsREREGN registrations of new companies, REIN company reinstatement, DRGD company deregistration, CHGT change of company typecompany, date, postcode, documentNumber; plus postcodeTotals[] on the extract
name-changesNANAME changes of company namecompany (former name), newName, date, documentNumber
external-administrationsEXEXAC administrator appointed, EXAD deed of company arrangement administrator, EXAL appointment of a liquidator, EXCQ notice of order winding up, EXRQ resolution of winding up, EXRC appointment of controller, EXMN scheme manager appointed under Part 5.1company, subject (the appointee), date, documentNumber
licences-grantedLCLCRA auditor, LCRQ liquidator, LCOQ official liquidator, LCFL Australian financial services licensee, LCSD securities dealer, LCIA investment adviser, LCFB futures broker, LCFD futures advisersubject (the licensee), licenceNumber, date
disqualified-directorsDIDISQ disqualified directorssubject (the person), date, documentNumber
new-schemesMIMISM newly registered managed investment schemescompany (the scheme, with ARSN), date, postcode

ASIC's billing table also lists a report of changes to the charges register (code 930C). That summary has not been produced since security interests moved to the Personal Property Securities Register in 2012 and there is no corresponding slug.

Reading the external administration sub-types

The external-administrations summary is the one most often used for credit monitoring, and the sub-types map directly onto office holder roles.

Sub-typeWhat happenedOffice holder role you will find on the company
EXACA voluntary administrator was appointed under Part 5.3A, usually by the directors because the company is or is likely to become insolventAC
EXADCreditors approved a deed of company arrangement and a deed administrator was appointedAD
EXALA liquidator was appointed, without distinguishing the kind of winding upAQ, MQ, VQ or BI
EXCQA court ordered the company to be wound up, typically on a creditor's applicationCQ
EXRQMembers or creditors resolved to wind up the company voluntarilyMQ or VQ
EXRCA receiver, receiver and manager or controller was appointed by a secured creditorRC, RM, CR or MC
EXMNA scheme manager was appointed under a Part 5.1 scheme of arrangementSM

Purchase a company extract for the company in the item and read GET /v1/companies/{id}/external-administration to see the appointee, the appointment date and the documents. The company's status will usually be EXAD after the appointment is processed; the summary can run a few days ahead of the status change.

External administration item
{
  "object": "weeklySummaryItem",
  "subType": { "code": "EXAL", "label": "Appointment of a Liquidator" },
  "date": "2026-08-25",
  "postcode": "3000",
  "documentNumber": "7E9876543",
  "subject": {
    "type": "person",
    "person": { "familyName": "NGUYEN", "givenNames": ["PETER"], "formatted": "PETER NGUYEN" },
    "birth": null,
    "organisation": null
  },
  "newName": null,
  "licenceNumber": null,
  "company": {
    "acn": "004249987",
    "formatted": "004 249 987",
    "numberType": { "code": "ACN", "label": "Australian Company Number" },
    "name": "EXAMPLE TRADING PTY LTD",
    "type": { "code": "APTY", "label": "Australian Proprietary Company" },
    "class": { "code": "LMSH", "label": "Limited By Shares" },
    "subClass": { "code": "PROP", "label": "Proprietary Company" },
    "status": { "code": "EXAD", "label": "** Under External Administration And/Or Controller Appointed **" },
    "abn": null,
    "registeredCharity": false
  }
}

Notes on the other summaries

  • new-registrations includes deregistrations (DRGD) and reinstatements (REIN) as well as registrations, so filter on subType.code if you only want new companies. CHGT marks a company that changed type, for example from proprietary to public.
  • name-changes gives the old name in company.name and the new name in newName. The ACN does not change.
  • licences-granted covers professional registrations and licences. The LCFL sub-type for Australian financial services licences is the only modern licence type; the securities and futures sub-types reflect the pre-2002 regime and are rarely seen today.
  • disqualified-directors items are people, so company is null and subject carries the name. Use the disqualified directors register for the period and grounds of the disqualification.
  • An empty week is still a successful purchase: the extract has an empty items list (summary_empty), not an error. A week outside the 12-month window or not yet published returns summary_unavailable and nothing is bought.

On this page