Phone Contact Lookup
/api/v2/phone_contact_lookup
operationId: phone_contact_lookup
Live: https://gdapi.globaldata.net.au/api/v2/phone_contact_lookup · Sandbox: https://sandbox-gdapi.globaldata.net.au/api/v2/phone_contact_lookup
The Phone Contact Lookup API allows you to retrieve the person or persons linked to a specific Australian phone number in the Global Data Universe.
The API requires a phone number to be provided and will return the following data if the phone number is found to be associated with a person in the Global Data Universe:
- First Name
- Middle Name
- Last Name
- Address
- Suburb
- State
- Postcode
- Date the record was last seen
If multiple people are linked to the phone number, the API will return multiple records (up to a maximum of 5).
Batch processing
The API can accept up to 100 phone numbers per request. Each result will include the phone number in the response and will be returned in the same order as the phone numbers in the request.
Sandbox environment data
When processing queries in the sandbox environment, the following records will return a match:
| Phone Number | First Name | Middle Name | Last Name | Address | Suburb | State | Postcode | Date Last Seen |
|---|---|---|---|---|---|---|---|---|
| +61399999999 | John | Andrew | Smith | 20 Hardy St | Lilydale | VIC | 3140 | 2019-02-20 |
| +61491222111 | John | Andrew | Smith | 20 Hardy St | Lilydale | VIC | 3140 | 2019-02-20 |
| +61491222111 | John | Andrew | Smith | 8 Waltham St | Richmond | VIC | 3121 | 2027-04-01 |
| +61427151494 | Mark | Wood | PO Box 8144 | Australian National University | ACT | 0200 | 2019-07-17 | |
| +61491222444 | Mary | Sally | Jones | 35 Yaralla St | Concord West | NSW | 2138 | 2099-01-01 |
| +61491222333 | Robert | Brown | 6 Waterview Cl | Port Macquarie | NSW | 2444 | 2099-07-19 | |
| +61880885999 | Marion | Filewood | 375 Argent St | Broken Hill | NSW | 2880 | 2002-07-16 | |
| +61880885999 | Aaron | Albert | Filewood | 375 Argent St | Broken Hill | NSW | 2880 | 2002-07-16 |
| +61412024869 | Marion | Filewood | 375 Argent St | Broken Hill | NSW | 2880 | 2002-07-16 |
Note: This API returns PII and as such requires an appropriate privacy policy and PII handling processes to be in place.
Request body
Content type application/json.
The phone numbers to search for
| Field | Description |
|---|---|
phones |
array of strings [items 1..32 characters] The phone numbers to search for in E.164 format. |
Responses
Result of the check
application/json
| Field | Description |
|---|---|
message |
string A message indicating the result of the request. This will be |
api_reference |
string (uuid) A unique identifier for this request. This can be used to track the request in the logs. |
results |
array of objects Array of results for each phone number. |
results[]. |
string The phone number in E.164 format. |
results[]. |
string The result of the search for the phone number. This will be |
results[]. |
array of objects Array of matched records for the phone number. |
results[]. |
string The first name of the matched individual. |
results[]. |
string or null The middle name of the matched individual. |
results[]. |
string The last name of the matched individual. |
results[]. |
string The address of the matched individual. |
results[]. |
string The suburb of the matched individual. |
results[]. |
string The state of the matched individual. |
results[]. |
string The postcode of the matched individual. |
results[]. |
string (date) The date the address record was last seen in the Global Data Universe |