- Getting Started
- Integration Guides
- Payment Integration
- CDR Integration
- Test Environment Data Sets
- Mobile Flows
- ConnectYou Flows
- NBN Flows
- API Documentation
- Customer
- Payment Method
- Transaction
- Plan
- Service
- Mobile
- Address
- Service Qualification
- Order
- Enquiry
- Appointment
- NBN
- Attachment
- API Documentation (Legacy APIs)
- WSDL Summary
- API Guide
- Account Charges
- ConnectYou
- Contact Log
- Device
- Mobile
- Notifications
- Pooled Resource
- Order
- Mobile Order
- Create a Mobile Service (New Number)
- Create a Mobile Service (Port In Number)
- Create a Pre-Activation Mobile Order (New Number)
- Bar/Unbar/Disconnect a Mobile Service
- Change Mobile Rate Plan
- Change a Mobile Number
- Replace a SIM Card
- Modify Mobile Feature(s)
- Modify Mobile Feature Setting(s)
- Change Excess Spend Limit
- Add a Once-off Bolt On
- Add a Recurring Bolt On Pack
- Remove a Recurring Bolt On Pack
- Mobile (Data Pool) Order
- ConnectYou (SIP Trunk) Order
- Other Rated Order
- Create an Order
- Cancel an Order
- Query an Order
- Reset an Order
- Mobile Order
- Statements & Billing
- Unbilled Calls
- OTP
- Reference Data
Search for an Address V2
Testing Env
https://benzine.telcoinabox.com/tiab/api
Testing Env
https://benzine.telcoinabox.com/tiab/api
POST
https://benzine.telcoinabox.com/tiab/api
address
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params application/json
query
stringÂ
optional
sourceType
enum<string>Â
optional
Allowed values:
nbnopticomm
state
stringÂ
required
streetNumber
stringÂ
required
suburb
stringÂ
required
streetName
stringÂ
optional
streetType
stringÂ
optional
postcode
stringÂ
optional
countryCode
stringÂ
optional
Example
{
"query": "string",
"sourceType": "nbn",
"state": "string",
"streetNumber": "string",
"suburb": "string",
"streetName": "string",
"streetType": "string",
"postcode": "string",
"countryCode": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://benzine.telcoinabox.com/tiab/api/v2/address/check' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"query": "string",
"sourceType": "nbn",
"state": "string",
"streetNumber": "string",
"suburb": "string",
"streetName": "string",
"streetType": "string",
"postcode": "string",
"countryCode": "string"
}'
Responses
🟢200OK
application/json
Body
array of:
id
stringÂ
required
description
stringÂ
required
provider
stringÂ
required
Example
[
{
"id": "string",
"description": "string",
"provider": "string"
}
]
🟠403Invalid access
Modified at 2025-05-27 06:53:39