The Certify process may be added to either the verify or auto-complete API service. The request is made by including “certify” as a parameter in the respective call. Requesting certified postal fields does incur an additional credit charge. Certified processing is only available for CASS (United States) and AMAS (Australia). Note: only old everythinglocation keys will work with this service.

Output Component Fields

FieldDefinition
DPIDDelivery Point Identifier is a unique 8-digit number which is assigned for every new address to the source address database
FloorTypeType of floor or level
FloorNumberFloor or level number (including alpha characters)
LotNumberAllotment number
PostBoxNumPostal delivery number if the address is a postal delivery type
PostBoxNumberPrefixPostal delivery number prefix related to the postal delivery number
PostBoxNumberSuffixPostal delivery number suffix related to the postal delivery number
PrimaryPremiseThoroughfare number for a property (first number in a property ranged address)
PrimaryPremiseSuffixSuffix for the thoroughfare number
SecondaryPremiseSecond thoroughfare number (only used if the property has a ranged address eg 23-25)
SecondaryPremiseSuffixSuffix for the second thoroughfare number
PreSortZoneAlso known as Barcode Sort Plan (BSP) number. The number of one of 54 individual sort regions around Australia. To qualify for Australia Post’s PreSort Letters Service, letters must be sorted based on this number
PrintPostZoneAlso known as a PreSort Indicator. To qualify for Australia Post’s Print Post Service, letters must be sorted based on this number
BarcodeStandard barcode based on the DPID
PrimaryAddressLinePrimary address line in standardized format
SecondaryAddressLineSecondary address line in standardized format

Example Request

Note: we don’t support API connections using HTTP - all calls should use HTTPS.
POST https://api.everythinglocation.com/address/verify?certify
Accept: application/json
Content-Type: application/json{
   "lqtkey":"CFtd1UpC8Gl1jU1PPnDZIVpoz2XnBMyWEfVcAfoI",
   "input":[
      {
         "Address1":"35 Stirling Hwy ",
         "Address2":"Crawley WA 6009",
         "Country":"aus"
      }
   ]
}

Example Response

200 OK
Content-Type:  application/json; charset=utf8
Date:  Fri, 16 Oct 2015 22:23:08 GMT
Server:  Apache
X-Powered-By:  PHP/5.4.16
Content-Length:  1147
Connection:  keep-alive
{
   "Status":"OK",
   "output":[
      {
         "AQI":"A",
         "AVC":"V44-I44-P6-100",
         "Address":"UNIVERSITY OF WA, 35 STIRLING HWY, CRAWLEY WA 6009",
         "Address1":"UNIVERSITY OF WA",
         "Address2":"35 STIRLING HWY",
         "Address3":"CRAWLEY WA 6009",
         "AdministrativeArea":"WA",
         "Barcode":"1301011211202201220110300122002111313",
         "Building":"UNIVERSITY OF WA",
         "CountryName":"AUSTRALIA",
         "DPID":"54681813",
         "DeliveryAddress":"UNIVERSITY OF WA, 35 STIRLING HWY",
         "DeliveryAddress1":"UNIVERSITY OF WA",
         "DeliveryAddress2":"35 STIRLING HWY",
         "ErrorCode":"4",
         "FloorNumber":"",
         "FloorType":"",
         "ISO3166-2":"AU",
         "ISO3166-3":"AUS",
         "ISO3166-N":"036",
         "Locality":"CRAWLEY",
         "LotNumber":"",
         "PostBoxNum":"",
         "PostBoxNumberPrefix":"",
         "PostBoxNumberSuffix":"",
         "PostBoxType":"",
         "PostalCode":"6009",
         "PreSortZone":"53",
         "Premise":"35",
         "PrimaryAddressLine":"35 STIRLING HWY",
         "PrimaryPremise":"35",
         "PrimaryPremiseSuffix":"",
         "PrintPostZone":"610",
         "SecondaryAddressLine":"",
         "SecondaryPremise":"",
         "SecondaryPremiseSuffix":"",
         "SubBuildingFloor":"",
         "SubBuildingLeadingType":"",
         "SubBuildingNumber":"",
         "Thoroughfare":"STIRLING HWY",
         "ThoroughfareName":"STIRLING",
         "ThoroughfarePostDirection":"",
         "ThoroughfareTrailingType":"HWY"
      }
   ]
}