Address Validate Bulk API

POST
/address_validate_bulk
LIVE

Bulk variant of Address Validate. This endpoint accepts up to 200 address validation requests in a single call.

Example Request

POST
request.json
key Auth: BearerAuth
{
  "requests": [
    {
      "check_id": "check_123",
      "street_address": "Unit 12B, 123-125 Smith St",
      "suburb": "Smithtown",
      "state": "ACT",
      "postcode": "2000",
      "suburb_state_postcode": "Smithtown ACT 2000",
      "full_address": "Unit 12B, 123-125 Smith St, Smithtown, ACT 2000"
    }
  ]
}

Request Schema

No request parameters mapped for this endpoint.

Technical Use Cases

verified

Database Cleansing

Periodically sweep your legacy CRM or marketing databases to standardise formatting and flag invalid addresses.

verified

Onboarding Migrations

Validate large lists of user addresses securely when migrating data from a third-party platform into your system.

Webhooks & Events

notifications
bulk-address-job-completed

Receive a notification when a large asynchronous validation batch is finished processing.

Trust & Assurance

Compliance & Security

Enterprise-grade infrastructure audited against the standards your regulators require.

verified_user
ISO 27001 Certified
enhanced_encryption
AES-256 Encryption
public
Australian Data Sovereignty
Integration & Support

Common Questions

Everything you need to know about implementation details and compliance infrastructure.

help_center General

Is there a limit to the array size?

add

Yes, a single request can contain up to 200 addresses to maintain low latency. For larger datasets, paginate your requests or utilise our batch processing endpoints.

BACK TO TOP