ASIC . Daily

ASIC Banned and Disqualified Persons as a JSON REST API

Query the ASIC Banned and Disqualified Persons register as a clean JSON REST API. Returns each banned individual with disqualification dates, reasons, and the regulator action. Updated daily from the official ASIC register. One bearer token, consistent envelope, no scraping or HTML parsing required.

Endpoint

GEThttps://api.ausdata.io/v1/data/asic/banned-persons

Sample request

cURL
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.ausdata.io/v1/data/asic/banned-persons?state=NSW&limit=10"

Sample response

JSON
{
  "data": [
    {
      "name": "Example Person",
      "state": "NSW",
      "ban_start": "2025-03-12",
      "ban_end": "2030-03-12",
      "reason": "Failure to comply with financial services laws",
      "action_type": "Banning order"
    }
  ],
  "meta": {
    "endpoint": "/v1/data/asic/banned-persons",
    "source": {
      "name": "ASIC",
      "url": "https://asic.gov.au/",
      "attribution": "(c) ASIC, CC-BY 4.0"
    },
    "retrieved_at": "<ISO timestamp>"
  }
}

Response fields

FieldTypeDescription
namestringFull name of the banned person
statestringAustralian state or territory
ban_startdateDate the disqualification begins
ban_enddate | nullDate the ban expires; null if indefinite
reasonstringStated reason for the regulator action
action_typestringBanning order, disqualification, etc.

Frequently asked questions

How do I query the Banned and Disqualified Persons dataset via API?
Send a GET request to https://api.ausdata.io/v1/data/asic/banned-persons with an Authorization: Bearer <your-key> header. The response is JSON with a data array and a meta block containing the source and retrieval timestamp. Get a free key at ausdata.io with 500 calls per month.
Is the Banned and Disqualified Persons data updated daily?
The Banned and Disqualified Persons dataset is refreshed daily from Australian Securities and Investments Commission (ASIC). The meta.retrieved_at field on every response tells you exactly when the underlying data was last pulled.
Is there a free tier for the ASIC Banned and Disqualified Persons API?
Yes. ausdata.io offers a free tier of 500 calls per month across every endpoint, including Banned and Disqualified Persons. No credit card required. Paid plans start at $29 AUD per month for 10,000 calls.
What format does the Banned and Disqualified Persons API return?
JSON, with a consistent envelope: a data field carrying the rows or object, and a meta field with the source agency, source URL, attribution string, and retrieved_at timestamp. UTF-8, ISO 8601 dates, CC-BY attribution included on every response.

Start querying ASIC Banned and Disqualified Persons

500 free calls per month. No credit card.

Get a free key