API Interface

Request

Rendezvous can be used via a POST request to the rendezvous endpoint. Again, data should be provided as a JSON in the body of the request and not in the URL.

JSON
POST  https://api.naurt.net/rendezvous/v1
Content-Type: application/json
Authorization: <API_KEY_HERE>
{
    "queries": [RequestFormat],
    "options": Option<Options>
}

The RequestFormat is as follows

JSON
{
    "address_string": Option<String>,
    "address_structured": Option<StructuredAddress>,
    "location": Option<Location>,
    "id": Option<Uuid>,
    "country": Option<Country>,
    "additional_matches": Option<bool>
}

Location is of the format

JSON
{
    "latitude": Float,
    "longitude": Float,
    "distance_filter": Option<Float>
}

Parameters

ParameterTypeOptionalDefaultDescription
latitude (within location)floatYesNoneA valid latitude in WGS84 degrees. Range: -90 <= lat <= 90.
longitude (within location)floatYesNoneA valid longitude in WGS84 degrees. Range: -180 <= lon < 180.
distance_filter (within location)floatYes5000A distance in metres (larger than 0) within which you wish to search for POIs. When a filter is applied a latitude and longitude must also be provided. Maximum value of 25000 metres.
address_stringStringYesNoneAn address string. Good formatting, spelling, and completeness will offer the best search results.
additional_matchesBooleanYesFalseProvides up to 4 results beyond what Naurt classifies as the best_match.
countryStringYesNoneOptional but strongly suggested two digit country code which helps with performance.
address_structuredObjectYesNoneSee this page for more details.
Currently supported country tags are
  • AU: Australia (BETA)
  • BR: Brazil (BETA)
  • CA: Canada (BETA)
  • DE: Germany (BETA)
  • FR: France (BETA)
  • IT: Italy (BETA)
  • PT: Portugal (BETA)
  • NZ: New Zealand (BETA)
  • SG: Singapore
  • UK: United Kingdom
  • US: United States

Example

CURL
curl -XPOST \
-H "Content-type: application/json" \
-H "Authorization: <API_KEY_HERE>"  \
-d '{"queries": [{"naurt_address_string": "Westminster Hall" ,"country": "UK"}]}' \
'https://api.naurt.net/final-destination/v2'

Response

Success

A 200 response code indicates a successful response with the format as follows.

JSON
{
    "responses": List<RESPONSES FORMAT>,
    "unmatched": List<RequestFormat>,
    "version": Optional<String>,
}

Should you experience any issues with a request, please cite the request_id in communications with Naurt.

The RESPONSES FORMAT is as follows

JSON
{
    "centre": DESTINATION RESPONSE FORMAT,
    "covers": List<DESTINATION RESPONSE FORMAT>
}

centre represents a cluster centre - this is the data corresponding to where the driver should park in order to make deliveries on foot. The covers list represents all of the addresses which can be delivered to from that parking location.

Note that clusters can contain just one address, where that address is far enough from any others.

The DESTINATION RESPONSE FORMAT is

JSON
{
  "id": String,
  "address": String,
  "geojson": GeoJSON,
  "distance": Optional<float>
}
  • Note that the address field is the normalised address and may not match the address you searched with.
  • Distance will only be present if you search with a latitude and longitude and will be the distance of the destination from that position in metres.

Failure

A response code other than 200 indicates a failure to retrieve the requested destination.

JSON
400 Unauthorized
{"error":"Please ensure the request contains a valid API key."}

Search Restrictions

Destinations requested via the API are subject to some restrictions.

  • No more than 300 requests per minute can be sent to this endpoint per API key. This limit can be adjusted by speaking to our support team.
  • Currently there is a maximum return of 5 destinations per request.

Use Cases

Naurt has, in effect, seven different ways the final destination API can be queried. These seven different methods cover different use cases and depend on what data you have available. These methods are summarised in the below table, with links to the relevant pages

Query TypeData RequiredExample Use Case
Forward GeocodeAn address as a single stringCustomer searches in a single query box
Forward Geocode with LocationAn address as a single string and a locationCustomer searches in a single query box with a location e.g. in a "search this area" feature in a map view
Structured GeocodeA parsed addressCustomer searches with a form
Structured Geocode with LocationA parsed address and locationCustomer searches with a form with a location e.g. in a "search this area" feature in a map view
Reverse GeocodeA locationSearching by clicking on a map
ID LookupA Naurt IDLooking up a previously searched Naurt ID
Source ID LookupA Source IDLooking up an address by third party ID

Example Requests and Responses

To keep the documentation clean and clear, in later pages, requests and responses are condensed to improve readability. Specifically, we usually show only the RequestFormat, of which you can chain multiple together into the queries array.

Just so you can see what examples of full requests and responses look like, some are provided here in full to give you an idea of what they may look like. You'll learn more about what the various options and settings do later in this documentation

Requests

JSON
{
  "queries": [
    {"address_string": "18a, Montague Place, Brighton, BN2 1JE, United Kingdom"},
    {"address_string": "Flat 9, Montague Court, Montague Street, Brighton, BN2 1NQ, United Kingdom"},
    {"address_string": "28 Hereford Street, Brighton, BN2 1JT, United Kingdom"},
    {"address_string": "4378twbv5934wy 9q87v3ncyq9nv eriyuib4478twtvwbeihsecfonreniren vt9nhyutrevuhtvnuhitr"}, // Deliberately unmatchable
    {"address_string": "27 Hereford Street, Brighton, BN2 1JT, United Kingdom"},
    {"address_string": "28 Essex Street, Brighton, BN2 1JW, United Kingdom"},
    {"address_string": "Flat 31, Martlet Court, Hereford Street, Brighton, BN2 1LQ, United Kingdom"},
  ]
}

Responses

JSON
{
  "responses": [
    {
      "centre": {
        "address": "18 Montague Place, Brighton, BN2 1JE, United Kingdom",
        "distance": 0.0,
        "geojson": {
          "features": [
            {
              "geometry": {
                "coordinates": [
                  -0.123741,
                  50.820209000000006
                ],
                "type": "Point"
              },
              "properties": {
                "naurt_type": "basic_geocode"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    -0.12381179788655124,
                    50.82022706162462
                  ]
                ],
                "type": "MultiPoint"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "naurt_type": "naurt_door"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.12379391875271813,
                      50.820268768047214
                    ],
                    [
                      -0.12382766341617618,
                      50.82027737681727
                    ],
                    [
                      -0.12387851914988166,
                      50.82019781554675
                    ],
                    [
                      -0.12384477448642364,
                      50.820189206761995
                    ],
                    [
                      -0.12379391875271813,
                      50.820268768047214
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "minimum_parking_to_door_distance": 4.8046092812651935,
                "naurt_type": "naurt_parking"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.12383090000000002,
                      50.8201995
                    ],
                    [
                      -0.1238029,
                      50.82023989999999
                    ],
                    [
                      -0.1236995,
                      50.820211400000005
                    ],
                    [
                      -0.1237274,
                      50.820171000000016
                    ],
                    [
                      -0.12383090000000002,
                      50.8201995
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "contributors": [
                  "© OpenStreetMap contributors"
                ],
                "naurt_type": "naurt_building"
              },
              "type": "Feature"
            }
          ],
          "type": "FeatureCollection"
        },
        "id": "2c95b8ea-232c-3e33-b513-8af49df2f8a9"
      },
      "covers": [
        {
          "address": "18a, Montague Place, Brighton, BN2 1JE, United Kingdom",
          "geojson": {
            "features": [
              {
                "geometry": {
                  "coordinates": [
                    -0.123741,
                    50.820209000000006
                  ],
                  "type": "Point"
                },
                "properties": {
                  "naurt_type": "basic_geocode"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      -0.12381179788655124,
                      50.82022706162462
                    ]
                  ],
                  "type": "MultiPoint"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "naurt_type": "naurt_door"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.12379391875271813,
                        50.820268768047214
                      ],
                      [
                        -0.12382766341617618,
                        50.82027737681727
                      ],
                      [
                        -0.12387851914988166,
                        50.82019781554675
                      ],
                      [
                        -0.12384477448642364,
                        50.820189206761995
                      ],
                      [
                        -0.12379391875271813,
                        50.820268768047214
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "minimum_parking_to_door_distance": 4.8046092812651935,
                  "naurt_type": "naurt_parking"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.12383090000000002,
                        50.8201995
                      ],
                      [
                        -0.1238029,
                        50.82023989999999
                      ],
                      [
                        -0.1236995,
                        50.820211400000005
                      ],
                      [
                        -0.1237274,
                        50.820171000000016
                      ],
                      [
                        -0.12383090000000002,
                        50.8201995
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "contributors": [
                    "© OpenStreetMap contributors"
                  ],
                  "naurt_type": "naurt_building"
                },
                "type": "Feature"
              }
            ],
            "type": "FeatureCollection"
          },
          "id": "8fc26ff4-031b-3fe4-853a-f5d1b787e010"
        }
      ]
    },
    {
      "centre": {
        "address": "Flat 8, Montague Court, Montague Street, Brighton, BN2 1NQ, United Kingdom",
        "distance": 0.0,
        "geojson": {
          "features": [
            {
              "geometry": {
                "coordinates": [
                  -0.12612,
                  50.82000399999998
                ],
                "type": "Point"
              },
              "properties": {
                "naurt_type": "basic_geocode"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    -0.12610453284748438,
                    50.820034139232234
                  ]
                ],
                "type": "MultiPoint"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "naurt_type": "naurt_door"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.126029420916333,
                      50.82004008070669
                    ],
                    [
                      -0.1260179285954505,
                      50.82006189527954
                    ],
                    [
                      -0.12614679611333682,
                      50.82008899132177
                    ],
                    [
                      -0.1261582884342193,
                      50.8200671767616
                    ],
                    [
                      -0.126029420916333,
                      50.82004008070669
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "minimum_parking_to_door_distance": 5.3176858862592296,
                "naurt_type": "naurt_parking"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.126132,
                      50.8198634
                    ],
                    [
                      -0.1260813,
                      50.819951
                    ],
                    [
                      -0.1260399,
                      50.8200209
                    ],
                    [
                      -0.1261722,
                      50.820047999999986
                    ],
                    [
                      -0.1262462,
                      50.8199261
                    ],
                    [
                      -0.1262678,
                      50.819890499999985
                    ],
                    [
                      -0.126132,
                      50.8198634
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "contributors": [
                  "© OpenStreetMap contributors"
                ],
                "naurt_type": "naurt_building"
              },
              "type": "Feature"
            }
          ],
          "type": "FeatureCollection"
        },
        "id": "f699d970-a2a7-3b3a-ae83-7cec49528b86"
      },
      "covers": [
        {
          "address": "Flat 9, Montague Court, Montague Street, Brighton, BN2 1NQ, United Kingdom",
          "geojson": {
            "features": [
              {
                "geometry": {
                  "coordinates": [
                    -0.12612,
                    50.82000399999998
                  ],
                  "type": "Point"
                },
                "properties": {
                  "naurt_type": "basic_geocode"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      -0.12610453284748438,
                      50.820034139232234
                    ]
                  ],
                  "type": "MultiPoint"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "naurt_type": "naurt_door"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.126029420916333,
                        50.82004008070669
                      ],
                      [
                        -0.1260179285954505,
                        50.82006189527954
                      ],
                      [
                        -0.12614679611333682,
                        50.82008899132177
                      ],
                      [
                        -0.1261582884342193,
                        50.8200671767616
                      ],
                      [
                        -0.126029420916333,
                        50.82004008070669
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "minimum_parking_to_door_distance": 5.3176858862592296,
                  "naurt_type": "naurt_parking"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.126132,
                        50.8198634
                      ],
                      [
                        -0.1260813,
                        50.819951
                      ],
                      [
                        -0.1260399,
                        50.8200209
                      ],
                      [
                        -0.1261722,
                        50.820047999999986
                      ],
                      [
                        -0.1262462,
                        50.8199261
                      ],
                      [
                        -0.1262678,
                        50.819890499999985
                      ],
                      [
                        -0.126132,
                        50.8198634
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "contributors": [
                    "© OpenStreetMap contributors"
                  ],
                  "naurt_type": "naurt_building"
                },
                "type": "Feature"
              }
            ],
            "type": "FeatureCollection"
          },
          "id": "f3a23894-db76-372f-a03a-a9ada5810cd5"
        }
      ]
    },
    {
      "centre": {
        "address": "34 Hereford Street, Brighton, BN2 1JT, United Kingdom",
        "distance": 14.98,
        "geojson": {
          "features": [
            {
              "geometry": {
                "coordinates": [
                  -0.127296,
                  50.82113799999999
                ],
                "type": "Point"
              },
              "properties": {
                "naurt_type": "basic_geocode"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    -0.12732016054449263,
                    50.821084749080285
                  ]
                ],
                "type": "MultiPoint"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "naurt_type": "naurt_door"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.12741381218948206,
                      50.82103822967247
                    ],
                    [
                      -0.12742418545035855,
                      50.82101619285632
                    ],
                    [
                      -0.12729400232952062,
                      50.82099173576637
                    ],
                    [
                      -0.12728362906864416,
                      50.82101377259403
                    ],
                    [
                      -0.12741381218948206,
                      50.82103822967247
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "minimum_parking_to_door_distance": 8.368792423863992,
                "naurt_type": "naurt_parking"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.1272829,
                      50.821078
                    ],
                    [
                      -0.1273624,
                      50.8210924
                    ],
                    [
                      -0.12732970000000002,
                      50.82116450000001
                    ],
                    [
                      -0.12728620000000002,
                      50.82115670000002
                    ],
                    [
                      -0.1272684,
                      50.82119590000002
                    ],
                    [
                      -0.12723230000000002,
                      50.82118940000001
                    ],
                    [
                      -0.1272829,
                      50.821078
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "contributors": [
                  "© OpenStreetMap contributors"
                ],
                "naurt_type": "naurt_building"
              },
              "type": "Feature"
            }
          ],
          "type": "FeatureCollection"
        },
        "id": "7386dfaf-7728-311f-9e57-7fe09d51003a"
      },
      "covers": [
        {
          "address": "28 Hereford Street, Brighton, BN2 1JT, United Kingdom",
          "geojson": {
            "features": [
              {
                "geometry": {
                  "coordinates": [
                    -0.127056,
                    50.82109
                  ],
                  "type": "Point"
                },
                "properties": {
                  "naurt_type": "basic_geocode"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      -0.12707830127938616,
                      50.82104088624948
                    ]
                  ],
                  "type": "MultiPoint"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "naurt_type": "naurt_door"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.12717248626737998,
                        50.82099287755372
                      ],
                      [
                        -0.1271828448135462,
                        50.820970837953894
                      ],
                      [
                        -0.12705264537451483,
                        50.82094641553314
                      ],
                      [
                        -0.12704228682834864,
                        50.82096845514451
                      ],
                      [
                        -0.12717248626737998,
                        50.82099287755372
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "minimum_parking_to_door_distance": 8.501280403045131,
                  "naurt_type": "naurt_parking"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.1270607,
                        50.821037700000005
                      ],
                      [
                        -0.1271408,
                        50.8210522
                      ],
                      [
                        -0.1271079,
                        50.8211244
                      ],
                      [
                        -0.1270279,
                        50.82110990000001
                      ],
                      [
                        -0.1270607,
                        50.821037700000005
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "contributors": [
                    "© OpenStreetMap contributors"
                  ],
                  "naurt_type": "naurt_building"
                },
                "type": "Feature"
              }
            ],
            "type": "FeatureCollection"
          },
          "id": "803e07b6-16a9-3a3b-99f0-95f199531160"
        },
        {
          "address": "27 Hereford Street, Brighton, BN2 1JT, United Kingdom",
          "geojson": {
            "features": [
              {
                "geometry": {
                  "coordinates": [
                    -0.127659,
                    50.82092800000001
                  ],
                  "type": "Point"
                },
                "properties": {
                  "naurt_type": "basic_geocode"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      -0.12764169316489635,
                      50.820966275685294
                    ]
                  ],
                  "type": "MultiPoint"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "naurt_type": "naurt_door"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.1276770366644139,
                        50.82104027897637
                      ],
                      [
                        -0.12768740158561703,
                        50.82101824059515
                      ],
                      [
                        -0.12755720921322453,
                        50.82099380316876
                      ],
                      [
                        -0.12754684429202143,
                        50.82101584156152
                      ],
                      [
                        -0.1276770366644139,
                        50.82104027897637
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "minimum_parking_to_door_distance": 8.595181182070863,
                  "naurt_type": "naurt_parking"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.1277228,
                        50.8209808
                      ],
                      [
                        -0.1276167,
                        50.82096180000002
                      ],
                      [
                        -0.1276439,
                        50.82090099999999
                      ],
                      [
                        -0.12775,
                        50.82092
                      ],
                      [
                        -0.1277228,
                        50.8209808
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "contributors": [
                    "© OpenStreetMap contributors"
                  ],
                  "naurt_type": "naurt_building"
                },
                "type": "Feature"
              }
            ],
            "type": "FeatureCollection"
          },
          "id": "dfd049d2-4bd1-3257-bc6d-8747a4ff7b5a"
        }
      ]
    },
    {
      "centre": {
        "address": "28 Essex Street, Brighton, BN2 1JW, United Kingdom",
        "distance": 0.0,
        "geojson": {
          "features": [
            {
              "geometry": {
                "coordinates": [
                  -0.12714,
                  50.82040699999999
                ],
                "type": "Point"
              },
              "properties": {
                "naurt_type": "basic_geocode"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    -0.1271216829533675,
                    50.82044684721285
                  ]
                ],
                "type": "MultiPoint"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "naurt_type": "naurt_door"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.12704700676925923,
                      50.82045451489875
                    ],
                    [
                      -0.12703670843583037,
                      50.82047656600119
                    ],
                    [
                      -0.127166974386579,
                      50.82050084670226
                    ],
                    [
                      -0.12717727272000787,
                      50.82047879561128
                    ],
                    [
                      -0.12704700676925923,
                      50.82045451489875
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "minimum_parking_to_door_distance": 5.314665275201783,
                "naurt_type": "naurt_parking"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.1271867,
                      50.82045870000002
                    ],
                    [
                      -0.1270929,
                      50.82044160000001
                    ],
                    [
                      -0.1271215,
                      50.8203791
                    ],
                    [
                      -0.1272152,
                      50.820396200000005
                    ],
                    [
                      -0.1271867,
                      50.82045870000002
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "contributors": [
                  "© OpenStreetMap contributors"
                ],
                "naurt_type": "naurt_building"
              },
              "type": "Feature"
            }
          ],
          "type": "FeatureCollection"
        },
        "id": "c083246e-640e-3ed7-aa71-ef463a882842"
      },
      "covers": [
        {
          "address": "28 Essex Street, Brighton, BN2 1JW, United Kingdom",
          "geojson": {
            "features": [
              {
                "geometry": {
                  "coordinates": [
                    -0.12714,
                    50.82040699999999
                  ],
                  "type": "Point"
                },
                "properties": {
                  "naurt_type": "basic_geocode"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      -0.1271216829533675,
                      50.82044684721285
                    ]
                  ],
                  "type": "MultiPoint"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "naurt_type": "naurt_door"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.12704700676925923,
                        50.82045451489875
                      ],
                      [
                        -0.12703670843583037,
                        50.82047656600119
                      ],
                      [
                        -0.127166974386579,
                        50.82050084670226
                      ],
                      [
                        -0.12717727272000787,
                        50.82047879561128
                      ],
                      [
                        -0.12704700676925923,
                        50.82045451489875
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "minimum_parking_to_door_distance": 5.314665275201783,
                  "naurt_type": "naurt_parking"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.1271867,
                        50.82045870000002
                      ],
                      [
                        -0.1270929,
                        50.82044160000001
                      ],
                      [
                        -0.1271215,
                        50.8203791
                      ],
                      [
                        -0.1272152,
                        50.820396200000005
                      ],
                      [
                        -0.1271867,
                        50.82045870000002
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "contributors": [
                    "© OpenStreetMap contributors"
                  ],
                  "naurt_type": "naurt_building"
                },
                "type": "Feature"
              }
            ],
            "type": "FeatureCollection"
          },
          "id": "c083246e-640e-3ed7-aa71-ef463a882842"
        }
      ]
    },
    {
      "centre": {
        "address": "Flat 23, Martlet Court, Hereford Street, Brighton, BN2 1LQ, United Kingdom",
        "distance": 0.0,
        "geojson": {
          "features": [
            {
              "geometry": {
                "coordinates": [
                  -0.125927,
                  50.820937000000015
                ],
                "type": "Point"
              },
              "properties": {
                "naurt_type": "basic_geocode"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    -0.12583165492705858,
                    50.82091169195323
                  ]
                ],
                "type": "MultiPoint"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "naurt_type": "naurt_door"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.126068991519824,
                      50.82078573090905
                    ],
                    [
                      -0.1260793570939567,
                      50.82076369253025
                    ],
                    [
                      -0.1259491654455947,
                      50.82073925343121
                    ],
                    [
                      -0.12593879987146198,
                      50.820761291821555
                    ],
                    [
                      -0.126068991519824,
                      50.82078573090905
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "accuracy": {
                  "quality": "high"
                },
                "minimum_parking_to_door_distance": 21.774684546266986,
                "naurt_type": "naurt_parking"
              },
              "type": "Feature"
            },
            {
              "geometry": {
                "coordinates": [
                  [
                    [
                      -0.1264443,
                      50.8208903
                    ],
                    [
                      -0.1263883,
                      50.8210134
                    ],
                    [
                      -0.1262547,
                      50.820989199999985
                    ],
                    [
                      -0.1262667,
                      50.820962699999995
                    ],
                    [
                      -0.126032,
                      50.82092019999999
                    ],
                    [
                      -0.12603050000000002,
                      50.820923600000015
                    ],
                    [
                      -0.1259952,
                      50.8209172
                    ],
                    [
                      -0.1259646,
                      50.8209846
                    ],
                    [
                      -0.1264501,
                      50.82107260000001
                    ],
                    [
                      -0.1263976,
                      50.8211881
                    ],
                    [
                      -0.126327,
                      50.82117529999999
                    ],
                    [
                      -0.1263359,
                      50.82115570000002
                    ],
                    [
                      -0.1263265,
                      50.82115400000001
                    ],
                    [
                      -0.1263083,
                      50.8211939
                    ],
                    [
                      -0.12625340000000002,
                      50.82118400000002
                    ],
                    [
                      -0.1262715,
                      50.821144
                    ],
                    [
                      -0.1261287,
                      50.82111810000001
                    ],
                    [
                      -0.1261243,
                      50.821127700000005
                    ],
                    [
                      -0.1260481,
                      50.8211139
                    ],
                    [
                      -0.1260525,
                      50.8211043
                    ],
                    [
                      -0.1259241,
                      50.82108099999999
                    ],
                    [
                      -0.1259216,
                      50.8210866
                    ],
                    [
                      -0.1258753,
                      50.82107819999999
                    ],
                    [
                      -0.1258717,
                      50.82108600000001
                    ],
                    [
                      -0.1258127,
                      50.8210752
                    ],
                    [
                      -0.12581620000000002,
                      50.8210675
                    ],
                    [
                      -0.1257779,
                      50.82106049999999
                    ],
                    [
                      -0.12578920000000002,
                      50.82103570000001
                    ],
                    [
                      -0.12577660000000002,
                      50.821033400000005
                    ],
                    [
                      -0.1257939,
                      50.82099529999999
                    ],
                    [
                      -0.12580650000000002,
                      50.8209976
                    ],
                    [
                      -0.1258364,
                      50.82093180000001
                    ],
                    [
                      -0.1258236,
                      50.82092940000001
                    ],
                    [
                      -0.1258488,
                      50.820874
                    ],
                    [
                      -0.12586160000000002,
                      50.82087630000001
                    ],
                    [
                      -0.1258994,
                      50.82079300000001
                    ],
                    [
                      -0.1260253,
                      50.82081579999999
                    ],
                    [
                      -0.126021,
                      50.8208253
                    ],
                    [
                      -0.126054,
                      50.82083130000001
                    ],
                    [
                      -0.1260572,
                      50.8208243
                    ],
                    [
                      -0.12615890000000002,
                      50.820842700000014
                    ],
                    [
                      -0.12616560000000002,
                      50.82082790000001
                    ],
                    [
                      -0.12625450000000002,
                      50.82084409999999
                    ],
                    [
                      -0.1262461,
                      50.8208625
                    ],
                    [
                      -0.12632780000000002,
                      50.82087730000001
                    ],
                    [
                      -0.1263311,
                      50.8208698
                    ],
                    [
                      -0.1264443,
                      50.8208903
                    ]
                  ]
                ],
                "type": "Polygon"
              },
              "properties": {
                "contributors": [
                  "© OpenStreetMap contributors"
                ],
                "naurt_type": "naurt_building"
              },
              "type": "Feature"
            }
          ],
          "type": "FeatureCollection"
        },
        "id": "def7ba91-9526-3ef9-acf5-94561581f7b4"
      },
      "covers": [
        {
          "address": "Flat 31, Martlet Court, Hereford Street, Brighton, BN2 1LQ, United Kingdom",
          "geojson": {
            "features": [
              {
                "geometry": {
                  "coordinates": [
                    -0.125927,
                    50.820937000000015
                  ],
                  "type": "Point"
                },
                "properties": {
                  "naurt_type": "basic_geocode"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      -0.12583165492705858,
                      50.82091169195323
                    ]
                  ],
                  "type": "MultiPoint"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "naurt_type": "naurt_door"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.126068991519824,
                        50.82078573090905
                      ],
                      [
                        -0.1260793570939567,
                        50.82076369253025
                      ],
                      [
                        -0.1259491654455947,
                        50.82073925343121
                      ],
                      [
                        -0.12593879987146198,
                        50.820761291821555
                      ],
                      [
                        -0.126068991519824,
                        50.82078573090905
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "accuracy": {
                    "quality": "high"
                  },
                  "minimum_parking_to_door_distance": 21.774684546266986,
                  "naurt_type": "naurt_parking"
                },
                "type": "Feature"
              },
              {
                "geometry": {
                  "coordinates": [
                    [
                      [
                        -0.1264443,
                        50.8208903
                      ],
                      [
                        -0.1263883,
                        50.8210134
                      ],
                      [
                        -0.1262547,
                        50.820989199999985
                      ],
                      [
                        -0.1262667,
                        50.820962699999995
                      ],
                      [
                        -0.126032,
                        50.82092019999999
                      ],
                      [
                        -0.12603050000000002,
                        50.820923600000015
                      ],
                      [
                        -0.1259952,
                        50.8209172
                      ],
                      [
                        -0.1259646,
                        50.8209846
                      ],
                      [
                        -0.1264501,
                        50.82107260000001
                      ],
                      [
                        -0.1263976,
                        50.8211881
                      ],
                      [
                        -0.126327,
                        50.82117529999999
                      ],
                      [
                        -0.1263359,
                        50.82115570000002
                      ],
                      [
                        -0.1263265,
                        50.82115400000001
                      ],
                      [
                        -0.1263083,
                        50.8211939
                      ],
                      [
                        -0.12625340000000002,
                        50.82118400000002
                      ],
                      [
                        -0.1262715,
                        50.821144
                      ],
                      [
                        -0.1261287,
                        50.82111810000001
                      ],
                      [
                        -0.1261243,
                        50.821127700000005
                      ],
                      [
                        -0.1260481,
                        50.8211139
                      ],
                      [
                        -0.1260525,
                        50.8211043
                      ],
                      [
                        -0.1259241,
                        50.82108099999999
                      ],
                      [
                        -0.1259216,
                        50.8210866
                      ],
                      [
                        -0.1258753,
                        50.82107819999999
                      ],
                      [
                        -0.1258717,
                        50.82108600000001
                      ],
                      [
                        -0.1258127,
                        50.8210752
                      ],
                      [
                        -0.12581620000000002,
                        50.8210675
                      ],
                      [
                        -0.1257779,
                        50.82106049999999
                      ],
                      [
                        -0.12578920000000002,
                        50.82103570000001
                      ],
                      [
                        -0.12577660000000002,
                        50.821033400000005
                      ],
                      [
                        -0.1257939,
                        50.82099529999999
                      ],
                      [
                        -0.12580650000000002,
                        50.8209976
                      ],
                      [
                        -0.1258364,
                        50.82093180000001
                      ],
                      [
                        -0.1258236,
                        50.82092940000001
                      ],
                      [
                        -0.1258488,
                        50.820874
                      ],
                      [
                        -0.12586160000000002,
                        50.82087630000001
                      ],
                      [
                        -0.1258994,
                        50.82079300000001
                      ],
                      [
                        -0.1260253,
                        50.82081579999999
                      ],
                      [
                        -0.126021,
                        50.8208253
                      ],
                      [
                        -0.126054,
                        50.82083130000001
                      ],
                      [
                        -0.1260572,
                        50.8208243
                      ],
                      [
                        -0.12615890000000002,
                        50.820842700000014
                      ],
                      [
                        -0.12616560000000002,
                        50.82082790000001
                      ],
                      [
                        -0.12625450000000002,
                        50.82084409999999
                      ],
                      [
                        -0.1262461,
                        50.8208625
                      ],
                      [
                        -0.12632780000000002,
                        50.82087730000001
                      ],
                      [
                        -0.1263311,
                        50.8208698
                      ],
                      [
                        -0.1264443,
                        50.8208903
                      ]
                    ]
                  ],
                  "type": "Polygon"
                },
                "properties": {
                  "contributors": [
                    "© OpenStreetMap contributors"
                  ],
                  "naurt_type": "naurt_building"
                },
                "type": "Feature"
              }
            ],
            "type": "FeatureCollection"
          },
          "id": "b4c4dc6d-555e-3e17-b435-ce1960f25117"
        }
      ]
    }
  ],
  "unmatched": [
    {
      "additional_matches": false,
      "address_string": "4378twbv5934wy 9q87v3ncyq9nv eriyuib4478twtvwbeihsecfonreniren vt9nhyutrevuhtvnuhitr"
    }
  ],
  "version": "v2.3.0"
}