/geocodeAddresses

GETGETPOST
Use dark colors for code blocksCopy
1
GET https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses

The /geocodeAddresses request converts a list of addresses or place names to a set of complete addresses with locations. The list of addresses can be formatted as a JSON structure or provided in a CSV file.

Parameters

NameRequiredTypeDefaultDescription
string

The request response format, either json or pjson

string

An access token with the required privileges.

object

A record set representing the addresses to be geocoded.

string

A place or address type that can be used to filter results.

string

Sets the country to be geocoded.

number

4326

The spatial reference of the x and y coordinates returned in a response.

boolean

true

Returns a match when the input house number is outside the street's house number range.

string

rooftop

Specifies whether output geometry of PointAddress and Subaddress matches should be the rooftop point or street entrance.

string | envelope

The set of bounding box coordinates that limits the search area.

string

The language in which results are returned.

string

Returns the specified street or city name in output fields.

string | *

The list of fields to be returned within the attributes object of a response.

Required parameters

f

The response format.

Use dark colors for code blocksCopy
1
f=json

token

An access token with the required privileges.

  • ArcGIS Location Platform: premium:user:geocode:temporary or premium:user:geocode:stored
  • ArcGIS Online: premium:user:geocode or premium:user:geocode:stored
Use dark colors for code blocksCopy
1
token=<ACCESS_TOKEN>

Learn more about access tokens and privileges in the Security and authentication developer guide.

addresses

A record set representing the addresses to be geocoded. Each record must include an OBJECTID attribute with a unique value as well as values for the address fields supported by the service.

For passing in the location name as a single line of text—single field batch geocoding—use the SingleLine input field.

For passing in the location name as multiple lines of text—multifield batch geocoding—use the address fields described in findAddressCandidates.

The service info page https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer?f=pjson provides localized versions of the input field names in all locales supported by the service. See Localized input field names for more information.

The service info page also provides the maximum length of strings supported for each address input field. For the SingleLine input field, refer to the length attribute of the singleLineAddressField object in the service info page. Currently, the maximum length is 200 characters. For the multifield address input fields, such as address , address2 , address3 , city , postal , and so on, refer to the addressFields object. Within this object, each multifield input field is described by a name attribute as well as a corresponding length attribute. The name attribute value in the service info is the same as the input field name. For example, information about the address field can be found by searching for name = address within the addressFields object.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
addresses=
{
    "records": [
        {
            "attributes": {
                "OBJECTID": 1,
                "Address": "380 New York St",
                "Neighborhood": "",
                "City": "Redlands",
                "Subregion": "",
                "Region": "CA"
            }
        },
        {
            "attributes": {
                "OBJECTID": 2,
                "Address": "1 World Way",
                "Neighborhood": "",
                "City": "Los Angeles",
                "Subregion": "",
                "Region": "CA"
            }
        }
    ]
}

Optional parameters

category

A place or address type that can be used to filter geocodeAddresses results. The parameter supports input of single-category values or multiple comma-separated values. See Category filtering for details about the category parameter.

Example of category filtering with a single category

Use dark colors for code blocksCopy
1
category=Address

Example of category filtering with multiple categories

Use dark colors for code blocksCopy
1
category=Address,Postal

sourceCountry

A value representing the country. When a value is passed for this parameter, all of the addresses in the input table are sent to the specified country to be geocoded. For example, if sourceCountry=USA is passed with a batch request, it is assumed that all of the addresses in the table are in the United States, so only matching addresses in the U.S. are returned. Using this parameter can increase batch geocoding performance when all addresses are within a single country.

Acceptable values include the three-character country code. You can specify multiple country codes to limit results to more than one country.

A list of supported countries and codes is available in Data coverage.

Example: Single country

Use dark colors for code blocksCopy
1
sourceCountry=USA

Example: Multiple countries

Use dark colors for code blocksCopy
1
sourceCountry=FRA,DEU,ESP

outSR

The spatial reference of the x,y coordinates returned by a geocode request. This is useful for applications using a map with a spatial reference different than that of the geocode service.

The spatial reference can be specified as either a well-known ID (WKID) or as a JSON spatial reference object. If outSR is not specified, the spatial reference of the output locations is the same as that of the service. The ArcGIS Geocoding service spatial reference is WGS84 (WKID = 4326).

For a list of valid WKID values, see Projected coordinate systems and Geographic coordinate systems.

Example (102100 is the WKID for the Web Mercator projection)

Use dark colors for code blocksCopy
1
outSR=102100

matchOutOfRange

A Boolean that specifies whether StreetAddress matches should be returned even when the input house number is outside of the house number range defined for the input street. Out-of-range matches have =StreetAddressExt . The geometry of such matches is a point corresponding to the end of the street segment where the range value is closest to the input house number. If matchOutOfRange is not specified in a request, its value is set to true by default.

With the matchOutOfRange parameter, better spatial accuracy is provided for inexact street address searches. Most street segments are assigned house number ranges. For example, Main Street may include house numbers from 2–100 on one side of the street and 1–99 on the other. A user may search for a house number that is not within this range, such as 109 Main Street. If matchOutOfRange=false is passed in this request, the geocode service will return a StreetName-level match to Main Street, with geometry corresponding to the centroid of a street segment that most closely matches the input values. StreetName matches can be ambiguous because there may be multiple street segments with the same name that equally match the input. However, if matchOutOfRange=true , in this case, a more precise geometry is returned to the specific side of the segment of Main Street with house number range 1–99.

Use dark colors for code blocksCopy
1
matchOutOfRange=false

locationType

The locationType parameter specifies whether the output geometry of PointAddress matches should be the rooftop point or street entrance location. Valid values are rooftop and street . The default value is rooftop .

Geocode results include one geometry object (the location object) which defines the location of the address, as well as two sets of x,y coordinate values within the attributes object: X /Y , and DisplayX /DisplayY . In most cases, for geocode results with =PointAddress or Subaddress , the X /Y attribute values describe the coordinates of the address along the street, while the DisplayX /DisplayY values describe the rooftop, or building centroid, coordinates. By default, the geometry returned for geocode results represents the rooftop location of the address (if the rooftop location is available in the source data). This is useful for most spatial analysis and map display purposes. However, for routing scenarios, it may be desirable to use the street location because the rooftop location of some addresses may be offset from a street by a large distance. For these cases, the locationType parameter can be used to specify that the street entrance geometry should be returned.

It is important to note that locationType is limited by the address data sources used by the ArcGIS Geocoding service. Not all PointAddress and Subaddress features include rooftop and street location coordinates. For some addresses, only a rooftop location is available; for others, only a street location is provided by the data source. For cases such as this, the locationType parameter may not function as expected. For example, if only rooftop location coordinates are available for an address, the rooftop geometry will be returned for the geocoded address even when locationType=street is requested.

Use dark colors for code blocksCopy
1
locationType=street

searchExtent

A set of bounding box coordinates that limit the search area to a specific region. This is especially useful for applications in which a user will search for places and addresses within the current map extent.

You can specify the spatial reference of the searchExtent coordinates, which is necessary if the map spatial reference is different than that of the ArcGIS Geocoding service; otherwise, the spatial reference of the coordinates is assumed to be the same as that of the ArcGIS Geocoding service.

The input can either be a comma-separated list of coordinates defining the bounding box or a JSON envelope object. The spatial reference of the bounding box coordinates can be included if an envelope object is used.

Refer to the Geocode addresses within an extent section below for more details about using searchExtent .

Example without a spatial reference

Use dark colors for code blocksCopy
1
searchExtent=-104,35.6,-94.32,41

Example with a spatial reference

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
searchExtent=
{
    "xmin": -13052769,
    "ymin": 3951172,
    "xmax": -13019630,
    "ymax": 3978490,
    "spatialReference": {
        "wkid": 3395
    }
}

langCode

The langCode parameter sets the language in which geocode results are returned. Addresses and places in many countries are available in more than one language; in these cases, the langCode parameter can be used to specify which language should be used for results returned by the geocodeAddresses operation. This is useful for ensuring that results are returned in the expected language. For example, a web application could be designed to get the browser language and pass it as the langCode parameter value in a geocodeAddresses request.

See the table of supported countries for valid language code values in each country. The Supported Language Codes column provides the valid input values for the langCode parameter. Full language names cannot be used with the langCode parameter. Only one language code value can be included for the langCode parameter in a geocodeAddresses request.

If the langCode parameter isn't included in a request, or if it is included but there are no matching features with the input language code, the resultant match is returned in the language code of the primary matched component from the input search string. Typically, this is either place-name or street name, depending on the search string.

Similarly, when there are multiple supported languages for a country, it doesn't mean that every address in the country is available in each of the languages. It may be the case that addresses are available in multiple languages for only one region of the country, or that each language is exclusive to a different region and there is no overlap. The following are some examples:

  • Both English and French are listed as supported languages for Canada. However, there is no overlap between the languages for any addresses in most provinces. In the province of Quebec, only French addresses are available, while English is the only language used for addresses in Ontario.
  • In Belgium, where three languages are supported (Dutch, French, and German), addresses are available in the city of Brussels in both Dutch and French. However, in the majority of the country, only a single language is used for addresses.
  • In Greece, there is complete address coverage in both Greek and transliterated Greek languages (Greek words represented with Latin characters).

Due to variability of language coverage, the following logic is used to handle the different scenarios that may be encountered.

ScenarioResultExample

Only one language is supported for an address, and no langCode value is specified in the geocodeAddresses request.

Candidate is returned in the supported language.

Input (address in Geneva, Switzerland):

  • Avenue Appia 20 1202 Geneva
  • langCode=

Output: Avenue Appia 20, 1202, Pregny-Chambésy, Genève

Only one language is supported for an address, and an unsupported language is specified for the langCode parameter in the geocodeAddresses request.

Candidate is returned in the supported language.

Input (address in Geneva, Switzerland):

  • Avenue Appia 20 1202 Geneva
  • langCode=zh (Chinese)

Output: Avenue Appia 20, 1202, Pregny-Chambésy, Genève

Multiple languages are supported for an address, and no langCode value is specified in the geocodeAddresses request.

Candidate is returned in the language of the primary matched component from the input string (street name or place-name).

Input (address in Brussels, Belgium):

  • Wetstraat 175 Brussel
  • langCode=

Output: Wetstraat 175, 1040, Brussel

Multiple languages are supported for an address, and an unsupported language is specified for the langCode parameter in the geocodeAddresses request.

Candidate is returned in the language of the primary matched component from the input string (street name or place-name).

Input (address in Athens, Greece):

  • Dionysiou Areopagitou 15, 11742, Athens
  • langCode=ru (Russian)

Output: Dionysiou Areopagitou 15, 117 42, Athens

Multiple languages are supported for an address, and a supported language is specified for the langCode parameter in the geocodeAddresses request.

Candidate is returned in the requested language.

Input (address in Athens, Greece):

  • Dionysiou Areopagitou 15, 11742, Athens
  • langCode=el (Greek)

Output: Διονυσίου Αρεοπαγίτου 15, 117 42, Αθήνα

Use dark colors for code blocksCopy
1
langCode=fr

preferredLabelValues

The preferredLabelValues parameter allows simple configuration of output fields returned in a response from the ArcGIS Geocoding service by specifying which address component values should be included in output fields. The parameter supports a single value or a comma-delimited collection of values as input. If the parameter is blank or excluded from a request, default address label formats will be used.

A particular address may have multiple city names associated with it. In the United States, for example, all addresses have a ZIP Code (postal code) assigned to them. Each ZIP Code has one or more associated locality names, which are known as postal cities. There is always one primary postal city value for each ZIP Code. ZIP Codes typically have no set boundaries, and the primary postal city name for the ZIP Code that is assigned to an address may be different than the name of the local city that the address is within.

For addresses in the United States, the ArcGIS Geocoding service includes the primary postal city in response output fields by default. As an example, postal code 45420 in Ohio has the primary postal city value Dayton. Addresses in the city of Kettering are assigned this postal code. It means that the default output fields for all geocoded addresses with postal code 45420, even those within the city of Kettering, will include Dayton as the city. To illustrate, if a user searches for 2109 E Dorothy Ln, OH, 45420 , the default match label returned in the response is 2109 E Dorothy Ln, Dayton, Ohio, 45420, even though the address is within the Kettering city limits.

Some organizations may prefer to include the local city name in the response instead of the postal city. The preferredLabelValues can be used for this purpose. For the previous example, if preferredLabelValues=localCity is included in the request, the output match label in the response will be 2109 E Dorothy Ln, Kettering, Ohio, 45420.

Similarly, streets may be known by multiple names. This is especially true with highways. For example, Pearblossom Hwy in California, which is the primary name, is also known as CA-138. The ArcGIS Geocoding service allows matching to addresses using either name as input, and by default will return the name that was matched to in the response.

Some organizations may prefer that the primary street name be returned in the response even if a user searches for an alternate street name, and they can use the preferredLabelValues parameter to accomplish this. In other words, if a user searches for CA-138, Pearblossom, CA , and preferredLabelValues=primaryStreet is included in the request, the match label returned in the response is Pearblossom Hwy, Pearblossom, California, 93553.

See the following table for supported parameter values.

Parameter valueDescription

postalCity

Include the primary postal city value in geocoding response output fields, even if it is different than the city name in the geocoding request. This is the primary name assigned to the postal code of the address.

localCity

Include the primary local city name in geocoding response output fields, even if it is different than the city name in the geocoding request. This is the name of the city that the address is within, and may be different than the postal city.

matchedCity

If the input city name in a geocoding request matches any of the local city or postal city names associated with an address, include the matched value in geocoding response output fields. If a city name is not included in the input, or is included but doesn't match to anything, default address formats will be used.

primaryStreet

Include the primary street name in geocoding response output fields, even if it is different than the street name in the geocoding request.

matchedStreet

If the input street name in a geocoding request matches any of the supported street names assigned to an address, include the matched value in geocoding response output fields.

Here are additional details about the preferredLabelValues parameter

  • The preferredLabelValues parameter takes a comma-delimited collection of values as input.
  • The parameter values correspond to two groups—a City group and a Street group, indicated by the suffix of the value name. The postalCity , localCity , and matchedCity values are part of the City group. The primaryStreet and matchedStreet values are part of the Street group.
  • A geocode request can include one City value and one Street value—for instance: preferredLabelValues=primaryStreet,postalCity .
  • A request can only include one value per group. In other words, a request with preferredLabelValues=matchedCity,postalCity is invalid.

Example: Single label value

Use dark colors for code blocksCopy
1
preferredLabelValues=matchedCity

Example: Multiple label values

Use dark colors for code blocksCopy
1
preferredLabelValues=matchedCity,primaryStreet

outFields

The list of fields to be returned within the attributes object of the geocodeAddresses response. Descriptions for each of these fields are available in the Service output topic.

Unless otherwise specified, all output fields are returned in a geocodeAddresses response (refer to this example to see the full set of output fields). The outFields parameter can be used to limit the result set by allowing specific fields to be returned, which is useful if not all fields are required for a user workflow.

If outFields=none is passed in a geocodeAddresses request, only the minimum set of components is included in the response. This includes the ResultID field, which is always part of the geocodeAddresses response no matter which values are defined for the outFields parameter. The minimum set of objects includes the following:

  • spatialReference
  • locations (full address and x,y coordinates of the match location)
  • score
  • attributes (including the ResultID output field)

Examples that return all output fields

Use dark colors for code blocksCopy
1
2
outFields=*
outFields=

Example that returns a partial set of output fields

Use dark colors for code blocksCopy
1
outFields=AddNum,StAddr,City

Example that returns the minimum set of output fields

Use dark colors for code blocksCopy
1
outFields=none

Response status

StatusMeaningDescriptionSchema
200
OK

A successful response for a /geocodeAddresses request.

Inline

400
Bad request

Invalid query parameters. Learn more in Service output.

Error

403
Forbidden

The required paramter token is valid but does not have permission to access the service. Learn more in Service output.

Error

5XX
Unknown

An error occured on the server. Learn more in Service output.

Error

Go to Service output for extended codes.

Response details

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145

{
  "spatialReference": {
      "wkid": "<spatialReference>",
      "latestWkid": "<spatialReference>"
  },
  "locations": [
      {
          "address": "<address>",
          "location": {
              "x": "<longitude>",
              "y": "<latitude>"
          },
          "score": "<score>",
          "attributes": {
              "ResultID": "<ResultID>",
              "Loc_name": "<Loc_name>",
              "Status": "<Status>",
              "Score": "<Score>",
              "Match_addr": "<Match_addr>",
              "LongLabel": "<LongLabel>",
              "ShortLabel": "<ShortLabel>",
              "Addr_type": "<Addr_type>",
              "Type": "<Type>",
              "PlaceName": "<PlaceName>",
              "Place_addr": "<Place_addr>",
              "Phone": "<Phone>",
              "URL": "<URL>",
              "Rank": "<Rank>",
              "AddBldg": "<AddBldg>",
              "AddNum": "<AddNum>",
              "AddNumFrom": "<AddNumFrom>",
              "AddNumTo": "<AddNumTo>",
              "AddRange": "<AddRange>",
              "Side": "<Side>",
              "StPreDir": "<StPreDir>",
              "StPreType": "<StPreType>",
              "StName": "<StName>",
              "StType": "<StType>",
              "StDir": "<StDir>",
              "BldgType": "<BldgType>",
              "BldgName": "<BldgName>",
              "LevelType": "<LevelType>",
              "LevelName": "<LevelName>",
              "UnitType": "<UnitType>",
              "UnitName": "<UnitName>",
              "SubAddr": "<SubAddr>",
              "StAddr": "<StAddr>",
              "Block": "<Block>",
              "Sector": "<Sector>",
              "Nbrhd": "<Nbrhd>",
              "District": "<District>",
              "City": "<City>",
              "MetroArea": "<MetroArea>",
              "Subregion": "<Subregion>",
              "Region": "<Region>",
              "RegionAbbr": "<RegionAbbr>",
              "Territory": "<Territory>",
              "Zone": "<Zone>",
              "Postal": "<Postal>",
              "PostalExt": "<PostalExt>",
              "Country": "<Country>",
              "LangCode": "<LangCode>",
              "Distance": "<Distance>",
              "X": "<X>",
              "Y": "<Y>",
              "DisplayX": "<DisplayX>",
              "DisplayY": "<DisplayY>",
              "Xmin": "<Xmin>",
              "Xmax":" <Xmax>",
              "Ymin":" <Ymin>",
              "Ymax":" <Ymax>",
              "ExInfo": "<ExInfo>"
          }
      }
  ]
}

Examples

Batch geocode two addresses

Multifield
Use dark colors for code blocksCopy
1
2
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":
[{"attributes":{"OBJECTID":1,"Address":"380 New York St.","City":"Redlands","Region":"CA","Postal":"92373"}},{"attributes":{"OBJECTID":2,"Address":"1 World Way","City":"Los Angeles","Region":"CA","Postal":"90045"}}]}&sourceCountry=USA&f=pjson&token=<ACCESS_TOKEN>
Single-field
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"380 New York St., Redlands, CA, 92373"}},{"attributes":{"OBJECTID":2,"SingleLine":"1 World Way, Los Angeles, CA, 90045"}}]}&sourceCountry=USA&f=pjson&token=<ACCESS_TOKEN>

Filter categories

The geocodeAddresses operation supports batch geocode filtering by category values, which represent address and place types. By including the category parameter in a geocodeAddresses request, you can avoid false positive matches to unexpected place and address types due to ambiguous input.

For example, a user has a table of three-letter airport codes that they want to geocode. There may be city or business names that are the same as an airport code, causing false positive matches to other places. However the user can ensure that only airport matches are returned by specifying category=airport in the request.

Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"LAX",}},{"attributes":{"OBJECTID":2,"SingleLine":"SFO",}}]}&category=airport&f=pjson&token=<ACCESS_TOKEN>

Batch geocode with fallback allowed

You can also use category filtering to avoid low resolution fallback matches. By default, if the ArcGIS Geocoding service cannot find a match for an input address, it will automatically search for a lower match level, such as a street name, city, or postal code. For batch geocoding, a user may prefer that no match is returned in such cases so that they are not charged for the geocode. If a user passes category=Point Address,Street Address in a geocodeAddresses request, no fallback will occur if address matches cannot be found; the user will only be charged for the address matches.

Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"380 New York St Redlands CA 92373",}},{"attributes":{"OBJECTID":2,"SingleLine":"Escondido CA",}}]}&category=&f=pjson&token=<ACCESS_TOKEN>

Batch geocode with no fallback allowed

Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"380 New York St Redlands CA 92373",}},{"attributes":{"OBJECTID":2,"SingleLine":"Escondido CA",}}]}&category=Point Address&f=pjson&token=<ACCESS_TOKEN>

See the topic Category filtering for details.

Batch geocode a set of coordinates

The ArcGIS Geocoding service supports batch geocoding of coordinates with the geocodeAddresses operation. The output is a geometry point with a match address that is the same as the input coordinates. This is different than reverse geocoding, in which input x,y coordinates are resolved to a matching street address; see reverseGeocode for more information. The following types of coordinates are supported for batch geocoding:

  • x,y coordinates; x refers to longitude (east-west coordinates), and y refers to latitude (north-south coordinates)
  • Military Grid Reference System (MGRS) coordinates
  • United States National Grid (USNG) coordinates

Detailed information about valid input formats for coordinate geocoding is provided in the findAddressCandidates topic. Examples for batch geocoding coordinates with the geocodeAddresses operation are provided below.

Longitude and latitude

Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"18.9919543,47.5283605",}},{"attributes":{"OBJECTID":2,"SingleLine":"Y:47.5283605 X:18.9919543",}}]}&f=pjson&token=<ACCESS_TOKEN>

MGRS coordinates

Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"18SUH6789043210",}},{"attributes":{"OBJECTID":2,"SingleLine":"19TDJ5538855106",}}]}&f=pjson&token=<ACCESS_TOKEN>

Batch geocode points of interest

The ArcGIS Geocoding service supports batch geocoding of POIs with the geocodeAddresses operation. A POI is a named point location that can represent a cultural or geographic landmark or a business. For example, you can find amusement parks, museums, schools, restaurants, hotels, gas stations, or other types of businesses or landmarks, as well as geographic features, such as mountains, lakes, rivers, or deserts.

As with street addresses, you can search for POIs with geocodeAddresses using the single-field or multifield approach.

Batch geocode amusement parks

Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"universal studios los angeles",}},{"attributes":{"OBJECTID":2,"SingleLine":"disneyland anaheim",}}]}&f=pjson&token=<ACCESS_TOKEN>

Batch geocode place names with addresses

Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"Starbucks, 5th Ave, San Diego",}},{"attributes":{"OBJECTID":2,"SingleLine":"San Diego Zoo, 2920 Zoo Dr, San Diego",}}]}&category=&sourceCountry=&matchOutOfRange=true&langCode=&locationType=&searchExtent=&outSR=&outFields=&preferredLabelValues=&f=pjson&token=<ACCESS_TOKEN>

Geocode addresses within an extent

The geocodeAddresses operation allows spatial filtering of search results by using the searchExtent parameter. If you want to confine a search to a localized area, something that is especially useful in a mobile application, you can define a bounding rectangle to search within. No candidates outside of the rectangle are returned. When bounding rectangle coordinates are entered as a simple comma-separated string in the format <lower left corner>,<upper right corner>, the coordinates must be in the default spatial reference of the geocode service, which is WGS84. The searchExtent parameter can be used with all supported search types (street address, POI, admin place, postal code).

The example URL below illustrates how to exclude candidates that are outside a specified extent from being returned by using the searchExtent parameter. In this example, two addresses are passed to geocodeAddresses , along with a searchExtent value corresponding to downtown Detroit. Only one of the input addresses is located within the extent, and no match is returned for the other address.

Only return address matches in downtown Detroit

Single-field
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"315 Bagley St, Detroit, Michigan, 48226",}},{"attributes":{"OBJECTID":2,"SingleLine":"24241 Scotia Rd, Detroit, Michigan, 48237",}}]}&searchExtent=-83.06757808033565,42.32169269843457,-83.03015590015993,42.3455495740986&category=Address&f=pjson&token=<ACCESSTOKEN>
Multifield
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"Address":"315 Bagley St","City":"Detroit","Region":"Michigan","Postal":"48226"}},{"attributes":{"OBJECTID":2,"Address":"24241 Scotia Rd","City":"Detroit","Region":"Michigan","Postal":"48237"}}]}&searchExtent=-83.06757808033565,42.32169269843457,-83.03015590015993,42.3455495740986&category=Address&f=pjson&token=<ACCESSTOKEN>

Specify different city and street names for output fields

The preferredLabelValues parameter allows limited customization of output values in geocodeAddresses responses. Refer to the parameter overview for details about its functionality; this section includes examples showing how it can be used.

The examples below illustrate how to modify the city and street names returned in a batch geocode response for these addresses by using the preferredLabelValues parameter. The first example shows what the geocode results look like without preferredLabelValues . The second example shows how to use preferredLabelValues to return the primary street names and local city names in geocoding results for the same input addresses.

Here is what the addresses parameter looks like in PJSON for the example addresses in single-field format (use with POST requests):

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
addresses=
{           "records": [
        {
            "attributes": {
                "OBJECTID": 1,
                "SingleLine": "635 CR-30, Olmstedville, NY 12857"
            }
        },
   {
            "attributes": {
                "OBJECTID": 2,
                "SingleLine": "7608 National Pike, Uniontown, Pennsylvania, 15401"
            }
        }
    ]
}

Here is what the addresses parameter looks like in PJSON for these addresses in multifield format (use with POST requests):

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
addresses=
{           "records": [
        {
            "attributes": {
                "OBJECTID": 1,
                "Address": "635 CR-30",
                "City": "Olmstedville",
                "Region": "NY",
                "Postal": "12857"
            }
        },
   {
            "attributes": {
                "OBJECTID": 2,
                "Address": "7608 National Pike",
                "City": "Uniontown",
                "Region": "Pennsylvania",
                "Postal": "15401"
            }
        }
    ]
}

Batch geocode two addresses without preferredLabelValues

Without using the preferredLabelValues parameter in the geocodeAddresses request for these addresses, the alternate street names and postal city names are shown in the output geocoding results.

Single-field
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"635 CR-30, Olmstedville, NY 12857",}},{"attributes":{"OBJECTID":2,"SingleLine":"7608 National Pike, Uniontown, Pennsylvania, 15401",}}]}&preferredLabelValues=&f=pjson&token=<ACCESSTOKEN>
Multifield
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"Address":"635 CR-30","City":"Olmstedville","Region":"NY","Postal":"12857"}},{"attributes":{"OBJECTID":2,"Address":"7608 National Pike","City":"Uniontown","Region":"Pennsylvania","Postal":"15401"}}]}&preferredLabelValues=&f=pjson&token=<ACCESSTOKEN>

By including preferredLabelValues=primaryStreet,localCity in the geocodeAddresses request for the same input addresses, the output street and city names are different than the previous example.

Batch geocode with preferredLabelValues

Single field

Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"635 CR-30, Olmstedville, NY 12857",}},{"attributes":{"OBJECTID":2,"SingleLine":"7608 National Pike, Uniontown, Pennsylvania, 15401",}}]}&preferredLabelValues=localCity,primaryStreet&f=pjson&token=<ACCESSTOKEN>
Multifield
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"Address":"635 CR-30","City":"Olmstedville","Region":"NY","Postal":"12857"}},{"attributes":{"OBJECTID":2,"Address":"7608 National Pike","City":"Uniontown","Region":"Pennsylvania","Postal":"15401"}}]}&preferredLabelValues=localCity,primaryStreet&f=pjson&token=<ACCESSTOKEN>

Specify output fields

The geocodeAddresses operation allows you to specify individual output fields or return all output fields in a response. The outFields parameter is used for this. If you want to return all supported output fields, set outFields=* , outFields= , or exclude the parameter from the request. If you only want to return the minimum set of default output fields, set outFields=none . If you want to return specific fields, pass the desired field names as comma-separated values in the request, such as outFields=Addr_type,AddNum,StName,StType,Nbrhd,City,Region,Postal,Country .

See Service output for details about the fields returned by a geocodeAddresses request.

The examples below illustrate how to control the fields that are included in a geocodeAddresses response by using the outFields parameter. The first example shows what the geocode results look like when a partial set of output fields is defined for outFields . The second example shows how to use outFields to return the minimum set of default output fields.

Return a partial set of output fields

Single-field
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"269 Lonsdale St, Melbourne, Victoria",}},{"attributes":{"OBJECTID":2,"SingleLine":"30 Flemington Rd, Melbourne, Victoria",}}]}&outFields=Addr_type,AddNum,StName,StType,Nbrhd,City,Region,Postal,Country&f=pjson&token=<ACCESSTOKEN>
Multifield
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"Address":"269 Lonsdale St","City":"Melbourne","Region":"Victoria",}},{"attributes":{"OBJECTID":2,"Address":"30 Flemington Rd","City":"Melbourne","Region":"Victoria",}}]}&outFields=Addr_type,AddNum,StName,StType,Nbrhd,City,Region,Postal,Country&f=pjson&token=<ACCESSTOKEN>

Return the minimum set of output fields

Single-field
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"SingleLine":"269 Lonsdale St, Melbourne, Victoria",}},{"attributes":{"OBJECTID":2,"SingleLine":"30 Flemington Rd, Melbourne, Victoria",}}]}&outFields=none&f=pjson&token=<ACCESSTOKEN>
Multifield
Use dark colors for code blocksCopy
1
GET https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/geocodeAddresses?addresses={"records":[{"attributes":{"OBJECTID":1,"Address":"269 Lonsdale St","City":"Melbourne","Region":"Victoria",}},{"attributes":{"OBJECTID":2,"Address":"30 Flemington Rd","City":"Melbourne","Region":"Victoria",}}]}&outFields=none&f=pjson&token=<ACCESSTOKEN>

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.