# Address Support Addresses must be provided based on identifier and type. Currently the Fibre Cafe supports the following address identifiers: - [UPRN](https://www.geoplace.co.uk/addresses-streets/location-data/the-uprn) - Unique Property Reference Number - NAD / DistrictCode - Openreach and BT Wholesale National Address Database key (also known as ALK). - ROBT - Rest of BT alternate address key - used by BT Wholesale Broadband One. - LINE_ID - Access Line Identifier (ALID) - used by Openreach/BT Wholesale to identify existing lines. When returning results, suppliers should provide the details they hold for this location to allow tenants to reconcile with their records. Example: ```json { "address": { "identifier": { "id": "200004033694", "type": "UPRN" }, "name": "TWENTY", "streetNumber": "20", "streetName": "Kingston Road", "locality": "", "city": "Staines-Upon-Thames", "postcode": "TW184LG", "country": "UK", "subAddress": { "name": "Strategic Imperatives", "unitNumber": "Floor 3" } } } ``` When using BT/Openreach with UPRN based suppliers, tenants need to pass additional address identifiers e.g. ```json { "identifier": { "id": "10091846447", "type": "UPRN", "additionalIdentifiers": [ { "id": "A15104646284", "type": "NAD" }, { "id": "LS", "type": "DistrictCode" }, { "id": "R09598326361", "type": "ROBT" } ] } } ``` Note: ROBT is only required for BT Wholesale Broadband One. The address lookup endpoint can be used to retrieve these values if they are not known.