Post
POST /final-destination/v2
Query the Naurt Final Destination dataset to retrieve precise destination locations for addresses, buildings, entrances, and parking locations.
Each request contains one or more queries. A query can represent several
different search types supported by the Final Destination API:
• Forward geocoding — supply an address_string or address_structured
• Reverse geocoding — supply a location with latitude and longitude
• Naurt ID lookup — supply an id returned from a previous query
• Source ID lookup — supply identifiers such as os_uprn
The API returns a best match for each query along with optional additional matches. Results may include multiple destination geometries such as building entrances, delivery doors, or parking locations depending on available data.
The geometry format returned by the API is controlled by options.geojson_type:
• geojson (default) — results are returned as standard GeoJSON
FeatureCollections with geometries and properties.
• key_value — results are returned as a simplified key/value representation
where each destination type contains latitude and longitude coordinates.
Each query result includes a status, the best match, optional additional matches, and metadata such as distance from the search location when applicable.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ”object
A single search query. It can be used to either lookup a door and parking spot by:
- Address
- Location
- Naurt ID
- Source Address ID (E.g, OS UPRN)
object
object
object
object
object
Examples
{ "queries": [ { "address_string": "32 Thames St, Windsor SL4 1PS", "country": "GB" } ]}{ "queries": [ { "location": { "latitude": 50.542, "longitude": 0.234, "distance_filter": 5000 } } ]}{ "queries": [ { "address_structured": { "street_number": "25", "street_name": "Lower Way", "city": "Thatcham", "postalcode": "RG19 3RR" }, "country": "GB" } ], "options": { "structured_response": true }}{ "queries": [ { "id": "c56dbebb-c7ab-ede2-a7ac-f84e57d1878d" } ]}{ "queries": [ { "source_id": { "os_uprn": "200001191298" } } ], "options": { "source_id": { "os_uprn": true } }}{ "queries": [ { "address_string": "32 Thames St, Windsor SL4 1PS" } ], "options": { "geojson_type": "key_value" }}Responses
Section titled “ Responses ”Successful lookup
object
object
object
object
object
object
object
object
object
object
object
object
object
object
A single search query. It can be used to either lookup a door and parking spot by:
- Address
- Location
- Naurt ID
- Source Address ID (E.g, OS UPRN)
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
A single search query. It can be used to either lookup a door and parking spot by:
- Address
- Location
- Naurt ID
- Source Address ID (E.g, OS UPRN)
object
object
object
object
object
Examples
{ "request_id": "96becf25-e233-4f9c-a05c-4bed90190bdd", "version": "v2", "responses": [ { "status": "ok", "best_match": { "id": "c56dbebb-c7ab-ede2-a7ac-f84e57d1878d", "address": "11600 NW 14th St, Hollywood, FL 33026-2568, United States", "geojson": { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -80.305321, 26.019775 ] }, "properties": { "naurt_type": "basic_geocode" } } ] } }, "additional_matches": [] } ]}{ "request_id": "96becf25-e233-4f9c-a05c-4bed90190bdd", "version": "v2", "responses": [ { "status": "ok", "best_match": { "id": "c56dbebb-c7ab-ede2-a7ac-f84e57d1878d", "address": "11600 NW 14th St, Hollywood, FL 33026-2568, United States", "geojson": { "basic_geocode": { "latitude": 26.019775, "longitude": -80.305321 } } }, "additional_matches": [] } ]}Bad request or validation errors
object
Internal server errors