> ## Documentation Index
> Fetch the complete documentation index at: https://docs.prontiq.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Prontiq

> Australian address intelligence through one API.

<Note>
  The Address API is live with full G-NAF coverage. Create an account, open the console, and create
  an API key to start building.
</Note>

## What is Prontiq?

Prontiq is a unified data API for Australian open datasets. One account, one
API key model, one SDK surface, and one console for keys, usage, and billing.

We're starting with **address validation** powered by the G-NAF (Geocoded
National Address File), the authoritative database of physical addresses in
Australia.

```bash theme={null}
curl "https://api.prontiq.dev/v1/address/autocomplete?q=9+endeavour+cou" \
  -H "X-Api-Key: YOUR_API_KEY"
```

```json theme={null}
{
  "suggestions": [
    {
      "id": "GAQLD156786950",
      "addressLabel": "9 ENDEAVOUR COURT",
      "localityName": "LAMMERMOOR",
      "state": "QLD",
      "postcode": "4703",
      "prontiqMatchScore": 92,
      "prontiqMatchQuality": "high"
    }
  ],
  "total": 1
}
```

## What you get

<CardGroup cols={2}>
  <Card title="Autocomplete" icon="magnifying-glass" href="/guides/address/autocomplete">
    Real-time typeahead for address forms.
  </Card>

  <Card title="Validate" icon="circle-check" href="/guides/address/validate">
    Verify any Australian address with Prontiq match scoring.
  </Card>

  <Card title="Enrich" icon="layer-group" href="/guides/address/enrich">
    Get boundaries, electorates, geocodes, and mesh blocks.
  </Card>

  <Card title="Reverse Geocode" icon="location-dot" href="/guides/address/reverse">
    Coordinates to nearest addresses with distance.
  </Card>

  <Card title="Postcode Lookup" icon="hashtag" href="/guides/address/postcode-lookup">
    Postcode to localities with address counts.
  </Card>

  <Card title="Suburb Lookup" icon="map" href="/guides/address/suburb-lookup">
    Suburb to postcodes, bounds, and counts.
  </Card>
</CardGroup>

## Usage and billing

Prontiq uses credits as the public usage unit. Account billing details are
available in the console; support questions go through Featurebase.

<CardGroup cols={2}>
  <Card title="Console billing" icon="receipt" href="https://console.prontiq.dev/billing">
    Manage billing, invoices, payment methods, and account usage.
  </Card>

  <Card title="Billing support" icon="life-ring" href="https://prontiq.featurebase.app">
    Raise a support ticket for billing or account questions.
  </Card>
</CardGroup>

## Coming soon

* **ABN/ASIC Verification** — Australian business entity lookup
* **GLEIF/LEI** — Legal Entity Identifier resolution
* **CVE/NVD** — Vulnerability intelligence
* **Patent Search** — IP Australia + USPTO

<Card title="Get started" icon="rocket" href="/guides/quickstart">
  Follow the quickstart guide to make your first API call.
</Card>
