Learn how to access the ArcGIS Places service.
A bounding box search finds places within an extent using the Places service. An extent typically represents the visible area of a map. To perform a bounding box search, you use the places package from ArcGIS REST JS.
Prerequisites
An ArcGIS Location Platform account.
Steps
Get the starter app
Select a type of authentication and follow the steps to create a new app.
Choose API key authentication if you:
- Want the easiest way to get started.
 - Want to build public applications that access ArcGIS Location Services and secure items.
 - Have an ArcGIS Location Platform or ArcGIS Online account.
 
Choose user authentication if you:
- Want to build private applications.
 - Require application users to sign in with their own ArcGIS account and access resources their behalf.
 - Have an ArcGIS Online account.
 
To learn more about both types of authentication, go to Authentication.
Set up authentication
Set developer credentials
Use the API key or OAuth developer credentials so your application can access ArcGIS services.
Make the request
Copy and paste the code below, following the steps to make a request to the Places service.
- 
Reference the
arcgis-rest-requestandarcgis-rest-placeslibraries either through CDN, ES Modules, or Node JS. - 
Define the parameters needed for the request.
 - 
Make a request to the Places service and handle the results.
 
    <script>
    // when including ArcGIS REST JS all exports are available from the same arcgisRest global
    /* Use for API key authentication */
    const accessToken = "YOUR_ACCESS_TOKEN";
    const authentication = arcgisRest.ApiKeyManager.fromKey(accessToken);
    // or
    /* Use for user authentication */
    // const authentication = await arcgisRest.ArcGISIdentityManager.beginOAuth2({
    //   clientId: "YOUR_CLIENT_ID", // Your client ID from OAuth credentials
    //   redirectUri: "YOUR_REDIRECT_URI", // The redirect URL registered in your OAuth credentials
    //   portal: "https://www.arcgis.com/sharing/rest" // Your portal URL
    // })
    arcgisRest.findPlacesWithinExtent({
      xmin: -115.2, // Coordinates around the Las Vegas Strip
      ymin: 36.09,
      xmax: -115.1,
      ymax: 36.161,
      searchText: "Night Clubs", // Search for "Night Clubs"
      authentication,
      f: "geojson"
    })
      .then((response) => {
        console.log("Search results:", response.results);
        document.getElementById("result").textContent = JSON.stringify(response.results, null, 2);
      }).catch((error) => {
        document.getElementById("result").textContent += error;
      });
    </script>
The service will return a list of up to 20 nearby places that match the search criteria.
The Places service returns a maximum of 20 search results at a time. To find more places that match your query, you can paginate through place results by making additional requests with a formatted URL. To learn more, go to Paginate search results.
Run the app
Run the app.
The result should look similar to this.What's next?
Learn how to use additional location services in these tutorials:
Find nearby places and details
Find points of interest near a location and get detailed information about them.
Find place addresses
Find coffee shops, gas stations, restaurants and other nearby places by accessing the ArcGIS Geocoding service.
Find a route and directions
Find a route and directions for an origin and destination by accessing the route service.