ACN, ABN, ARBN and ARSN explained
Learn the difference between an ACN, ABN, ARBN and ARSN, how their check digits work, and how to validate and convert them with the asicapi API.
Australian businesses carry several look-alike identifiers. An Australian Company Number (ACN) is the nine-digit number ASIC gives every company at registration. An Australian Business Number (ABN) is an eleven-digit number issued by the Australian Business Register for tax and invoicing, and for a company it usually contains the ACN. An Australian Registered Body Number (ARBN) is the ACN equivalent for foreign companies and registered Australian bodies, and an Australian Registered Scheme Number (ARSN) identifies a managed investment scheme. All four are accepted by asicapi wherever a company id is expected.
The four identifiers side by side
| Identifier | Issued by | Length | Who gets one | Display format | Check digit |
|---|---|---|---|---|---|
| ACN | ASIC, under the Corporations Act 2001 | 9 digits | Australian proprietary and public companies (APTY, APUB) | 004 085 616 | Weighted modulus 10 |
| ARBN | ASIC | 9 digits | Foreign companies (FNOS) and registered Australian bodies (RACN) | 004 085 616 | Same algorithm as ACN |
| ARSN | ASIC | 9 digits | Registered managed investment schemes (MISM) | 004 085 616 | Same algorithm as ACN |
| ABN | Australian Business Register (ATO) | 11 digits | Any entity carrying on an enterprise: companies, sole traders, partnerships, trusts | 53 004 085 616 | Weighted modulus 89 |
ASIC's own register knows the first three; the ABN is added from a feed the Australian Business Register sends to ASIC, which is why abn can be null for a company that never applied for one.
When to use which
- To look up a company on the ASIC register, use the ACN. It is the primary key of the register and never changes, even when the company changes its name.
- If you only have an ABN, you can still call
GET /v1/companies/{id}with it. asicapi validates the ABN, extracts the embedded ACN and resolves the company. This only works for ACN-based ABNs; a sole trader's or trust's ABN has no ACN inside it and returnsabn_not_acn_based. - Foreign companies and registered Australian bodies have no ACN. Use the ARBN. Their record shows
numberType.codeofARBN. - Managed investment schemes are identified by ARSN,
numberType.codeofARSN. - Business names have none of these. They are identified by a state registration number or ASIC identifier and served from
/v1/business-names.
The numberType object on every company tells you which kind of number acn holds:
| Code | Meaning | ASIC code |
|---|---|---|
ACN | Australian Company Number | 1 |
ARBN | Australian Registered Body Number | 2 |
NUMBER | Registration number | 3 |
ARSN | Australian Registered Scheme Number | 4 |
4 codes. Source: the "Organisation number heading" table in ASIC's Datastream specification, with ASIC’s original codes shown alongside the readable codes asicapi returns.
Code NUMBER ("Registration number") appears on records such as trusts and non-registered entities where ASIC allocated an internal number that is not an ACN, ARBN or ARSN.
The ACN check digit algorithm
The ninth digit of an ACN is a check digit computed from the first eight. ASIC publishes the algorithm, and asicapi applies it before sending any request to ASIC so a typo fails fast with acn_invalid rather than a slower company_not_found.
Weight the first eight digits
Multiply digits 1 to 8 by the weights 8, 7, 6, 5, 4, 3, 2, 1. For ACN 004 085 616:
| Digit | 0 | 0 | 4 | 0 | 8 | 5 | 6 | 1 |
|---|---|---|---|---|---|---|---|---|
| Weight | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 |
| Product | 0 | 0 | 24 | 0 | 32 | 15 | 12 | 1 |
Sum and take the remainder
0 + 0 + 24 + 0 + 32 + 15 + 12 + 1 = 84. Divide by 10: 84 mod 10 = 4.
Complement to 10
10 minus 4 = 6. If the complement is 10, use 0. The calculated check digit (6) equals the actual ninth digit (6), so 004 085 616 is a valid ACN.
ARBNs and ARSNs use exactly the same construction, so one validator covers all three.
Valid ACNs for testing
These ACNs all pass the check digit test and are published by ASIC for exactly this purpose. The sandbox accepts any of them; company 009 136 109 is ASIC's public sample company and is the only one with document images available in the sandbox.
| ACN | ACN | ACN | ACN |
|---|---|---|---|
| 000 000 019 | 000 250 000 | 000 500 005 | 000 750 005 |
| 001 000 004 | 001 250 004 | 001 500 009 | 001 749 999 |
| 001 999 999 | 002 249 998 | 002 499 998 | 002 749 993 |
| 004 085 616 | 004 249 987 | 004 499 987 | 004 749 982 |
| 006 999 980 | 007 249 989 | 009 136 109 | 010 249 966 |
The ABN check and the embedded ACN
An ABN has its own checksum, defined by the Australian Business Register:
- Subtract 1 from the first digit.
- Multiply the eleven digits by the weights 10, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19.
- Sum the products. The ABN is valid if the sum is divisible by 89.
For ABN 53 004 085 616, the first digit becomes 4. The products are 40, 3, 0, 0, 28, 0, 88, 65, 90, 17 and 114, which sum to 445. 445 divided by 89 is exactly 5, so the ABN is valid.
When a company applies for an ABN, the Registrar forms it by prefixing the company's ACN with two check digits. The last nine digits of 53 004 085 616 are 004 085 616, which is the ACN. asicapi returns this as acnFromAbn and uses it to resolve companies by ABN. If the extracted nine digits do not themselves pass the ACN check, the ABN is treated as not ACN based.
Validating identifiers with the API
GET /v1/identifiers/{value} detects the type of any identifier, checks it and returns normalised and display forms. It never contacts ASIC and is free.
curl https://api.asicapi.dev/v1/identifiers/53%20004%20085%20616 \
-H "Authorization: Bearer $ASICAPI_KEY"{
"object": "identifier",
"input": "53 004 085 616",
"type": "abn",
"valid": true,
"normalized": "53004085616",
"formatted": "53 004 085 616",
"acnFromAbn": "004085616"
}Because ACNs, ARBNs and ARSNs are indistinguishable by format alone, a nine-digit input that passes the check is reported as "type": "acn". The register tells you what it really is: read numberType on the company record. A value that is neither nine nor eleven digits, or that fails its checksum, comes back with "type": "unknown" or "valid": false respectively.
Spaces are stripped from path parameters, so 004 085 616, 004085616 and 004-085-616 all resolve to the same company. Responses always carry both the bare acn and the ASIC display formatted form.
Related errors
| Code | HTTP | Meaning |
|---|---|---|
acn_invalid | 400 | The nine-digit number fails the ASIC check digit test |
abn_invalid | 400 | The eleven-digit number fails the modulus 89 test |
abn_not_acn_based | 400 | Valid ABN, but its last nine digits are not an ACN |
abn_not_found | 404 | ASIC has no company matching the embedded ACN, or the company has no ABN on file |
company_not_found | 404 | Valid number, but no organisation with that ACN, ARBN or ARSN exists |
Related
Australian companies on the ASIC register
What ASIC records about an Australian company, from ACN and company type to directors, share capital and documents, and how asicapi exposes it.
Company types, classes and sub-classes
Understand ASIC organisation types, classes and sub-classes such as Pty Ltd, public limited, no liability and listed companies, and how asicapi codes them.