...
Expand |
---|
|
RequestQuery ParametersParameter | Type | Example | Description |
---|
apiKey | string | myapikey | Please contact us if you don't know your API key. | location | string | oslo | To show street name from relevant city first. If you want to show the streets in the user's city first in the result, you will have to use a service to find the city of the user's IP address. For common street names this is useful (i.e. Kirkegata, Skoleveien or Storgata) | limitToOfficial | boolean | true | If you want to limit the results to official Norwegian addresses (will eliminate duplicates). Default is false | limit | int | 50 | If you want to override the number of records to return. Default is 30 |
Response Status |
---|
colour | Green |
---|
title | STATUS 200 |
---|
| - application/JSON Code Block |
---|
| {
"streets": [
{
"countryCode": String,
"city": String",
"streetName": String,
"streetIds": List<Integer> // A street has one or more id's
}
],
"totalResults": Integer
} |
|
...
Returns the street numbers that are related to the streetIds provided in the request (ids are comma-delimited). The query parameter, streetNumber, can be used to filter the street numbers.
Expand |
---|
|
RequestQuery ParametersParameter | Type | Example | Description |
---|
apiKey | string | myapikey | Please contact us if you don't know your API key. | streetNumber | whole number | 10 | Filter results by street number | limitToOfficial | boolean | true | If you want to limit the results to official Norwegian addresses (will eliminate duplicates). Default is false | limit | int | 100 | If you want to override the number of records to return. Default is 30 |
Response Status |
---|
colour | Green |
---|
title | STATUS 200 |
---|
| - application/JSON Code Block |
---|
| {
"streetNumbers": [
{
"streetNo": Integer,
"addressId": Integer,
"entrance": String, // Present if a building has several entrances, where the value is the entrance name
"houseType": String, // See the following examples
"deliveryPointId": Integer,
"postalCode": String,
"duplicateNumberAndEntrance": Boolean, // Some streets have several entrances on the same street number. When duplicateNumberAndAddress is true, the houseType should be used to separate them
"latitude": Number,
"longitude": Number
},
...
]
} |
House types: (E)nebolig - detached house (R)ekkehus - row house (B)lokk - apartment building (F)orretning - business (H)ytte - holiday house (A)nnet - other Example address with duplicateNumberAndEntrance: Akersgata 45 (houseType B and F) |
...