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
typein the body ofPOST /v1/weekly-summariesis one of the slugs below, each mapping to a code in the weekly summary types table. The purchase returns a weekly summary extract withsummaryType,weekStarting,itemsandpostcodeTotals;GET /v1/weekly-summaries/{id}andGET /v1/weekly-summaries?type=&weekStarting=read the extracts you hold for free. See purchasing.weeklySummaryItem.subTypeon every item uses the weekly summary sub-types table.weekStarting(a Monday within the last 12 months) selects the week at purchase; the optionalpostcodequery parameter filters the items when you read the extract.postcodeTotals[]on anew-registrationsextract gives counts per postcode for the week.meta.productisweekly_summaryon 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
| Code | Meaning |
|---|---|
DI | Disqualified Directors |
EX | External administrations |
LC | Licences granted |
NA | Changes of company name |
RE | Registration of new companies |
MI | Newly Registered Managed Investment Schemes |
6 codes. Source: the "Weekly summary types" table in ASIC's Datastream specification.
Weekly summary sub-types
| Code | Meaning |
|---|---|
CHGT | Change of Company Type |
DISQ | Disqualified Directors |
DRGD | Company Deregistration |
EXAC | Administrator of a Company Under Administration |
EXAD | Administrator of a Deed of Company Arrangement |
EXAL | Appointment of a Liquidator |
EXCQ | Notice of Order Winding Up |
EXMN | Appointment of Scheme Manager Under Part 5.1 |
EXRC | Appointment of Controller |
EXRQ | Resolution of Winding Up |
LCFB | Registration of a Futures Broker |
LCFD | Registration of a Futures Adviser |
LCFL | Registration as an Australian Financial Services Licensee |
LCIA | Registration of an Investment Adviser |
LCOQ | Registration as an Official Liquidator |
LCRA | Registration as an Auditor |
LCRQ | Registration as a Liquidator |
LCSD | Registration as a Securities Dealer |
MISM | Newly Registered Managed Investment Schemes |
NAME | Changes of Company Name |
REGN | Registrations of New Companies |
REIN | Company Reinstatement |
22 codes. Source: the "Weekly summary sub-types" table in ASIC's Datastream specification.
API slugs, type codes and sub-types
| Slug | ASIC type | Sub-types the list can contain | Item fields populated |
|---|---|---|---|
new-registrations | RE | REGN registrations of new companies, REIN company reinstatement, DRGD company deregistration, CHGT change of company type | company, date, postcode, documentNumber; plus postcodeTotals[] on the extract |
name-changes | NA | NAME changes of company name | company (former name), newName, date, documentNumber |
external-administrations | EX | EXAC 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.1 | company, subject (the appointee), date, documentNumber |
licences-granted | LC | LCRA auditor, LCRQ liquidator, LCOQ official liquidator, LCFL Australian financial services licensee, LCSD securities dealer, LCIA investment adviser, LCFB futures broker, LCFD futures adviser | subject (the licensee), licenceNumber, date |
disqualified-directors | DI | DISQ disqualified directors | subject (the person), date, documentNumber |
new-schemes | MI | MISM newly registered managed investment schemes | company (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-type | What happened | Office holder role you will find on the company |
|---|---|---|
| EXAC | A voluntary administrator was appointed under Part 5.3A, usually by the directors because the company is or is likely to become insolvent | AC |
| EXAD | Creditors approved a deed of company arrangement and a deed administrator was appointed | AD |
| EXAL | A liquidator was appointed, without distinguishing the kind of winding up | AQ, MQ, VQ or BI |
| EXCQ | A court ordered the company to be wound up, typically on a creditor's application | CQ |
| EXRQ | Members or creditors resolved to wind up the company voluntarily | MQ or VQ |
| EXRC | A receiver, receiver and manager or controller was appointed by a secured creditor | RC, RM, CR or MC |
| EXMN | A scheme manager was appointed under a Part 5.1 scheme of arrangement | SM |
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.
{
"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-registrationsincludes deregistrations (DRGD) and reinstatements (REIN) as well as registrations, so filter onsubType.codeif you only want new companies.CHGTmarks a company that changed type, for example from proprietary to public.name-changesgives the old name incompany.nameand the new name innewName. The ACN does not change.licences-grantedcovers professional registrations and licences. TheLCFLsub-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-directorsitems are people, socompanyisnullandsubjectcarries 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
itemslist (summary_empty), not an error. A week outside the 12-month window or not yet published returnssummary_unavailableand nothing is bought.
Related
ASIC managed investment scheme category codes
Reference for ASIC scheme category codes on registered managed investment schemes, from primary production and property to IDPS-like, mortgage and time share.
ASIC record status, charge and other code tables
Reference for ASIC record status codes C, E and F, charge type and status codes, organisation number types, information products and statutory fee codes.