For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Calculator
OverviewAPI Endpoints
OverviewAPI Endpoints
  • Endpoints
      • POSTCalculate repayments
      • POSTRecalculate repayments
      • POSTLook up ABN status
Calculator
LogoLogo
EndpointsCalculator

Look up ABN status

POST
https://api.finput.com.au/api/v1/calculator/abn-lookup
POST
/api/v1/calculator/abn-lookup
$curl -X POST https://api.finput.com.au/api/v1/calculator/abn-lookup \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "abn": "12345678901"
>}'
1{
2 "abn_status": "ACT",
3 "abn_status_from": "abn_status_from",
4 "gst_status_from": "gst_status_from",
5 "abn_age": 1,
6 "gst_age": 1
7}

Verifies an Australian Business Number (ABN) via the Equifax API and returns the ABN/GST registration dates and calculated ages in months.

Was this page helpful?
Previous

List all organisations

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
abnstringRequired

11-digit Australian Business Number

Response

ABN lookup result
abn_statusstring

ABN status (ACT = Active)

abn_status_fromstring
Date ABN became active
gst_status_fromstring
Date GST registration became active
abn_ageinteger
ABN age in months
gst_ageinteger
GST registration age in months

Errors

400
Abn Lookup Request Bad Request Error