<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Query Parcel by Address using an API in ArcGIS REST APIs and Services Questions</title>
    <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072627#M3903</link>
    <description>&lt;P&gt;If you're using JavaScript, the&lt;A href="https://developers.arcgis.com/rest/" target="_self"&gt; REST API&lt;/A&gt; is a good place to start. Specifically, you may be interested in&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/rest/services-reference/enterprise/geocode-addresses.htm" target="_self"&gt;Geocoding&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/rest/services-reference/enterprise/query-feature-service-layer-.htm" target="_self"&gt;Querying Layers&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For your second question, that's really something for the &lt;EM&gt;owner&lt;/EM&gt; of that service to answer. I'd check out the layer's documentation / metadata to see if there is a geographic extent given, or use limitations, etc. I tried to visit the link in your screenshot to see the data myself, but it refused to connect.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Jun 2021 15:21:46 GMT</pubDate>
    <dc:creator>jcarlson</dc:creator>
    <dc:date>2021-06-25T15:21:46Z</dc:date>
    <item>
      <title>Query Parcel by Address using an API</title>
      <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072580#M3900</link>
      <description>&lt;P&gt;I'm working on a grad school project where I need to query parcel data, nation-wide, by a single address. Is this possible? I found a tool the load in all the parcel data but I don't have the request headers correct.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JoshuaTrimm_0-1624629388951.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/16987iFE9927B0E45BBEF5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JoshuaTrimm_0-1624629388951.png" alt="JoshuaTrimm_0-1624629388951.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;On ArcGIS's map web page (&lt;A href="https://jbpfqw9kw2dbl0un.maps.arcgis.com/home/item.html?id=f0caf68f0213420a9cea8b2a44d9b60f&amp;amp;view=list&amp;amp;sortOrder=desc&amp;amp;sortField=defaultFSOrder&amp;amp;showFilters=true#data" target="_blank" rel="noopener"&gt;link here&lt;/A&gt;) this async request is loaded into the page in the form of a table that mimics a CSV.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JoshuaTrimm_1-1624629548767.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/16989i0BCCE66202877F02/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JoshuaTrimm_1-1624629548767.png" alt="JoshuaTrimm_1-1624629548767.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If I keep scrolling, it should load all the parcel data I want. However, I just need it in json format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any and all the help! This is really cool that all this data and api stuff is this open!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 14:02:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072580#M3900</guid>
      <dc:creator>JoshuaTrimm</dc:creator>
      <dc:date>2021-06-25T14:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Query Parcel by Address using an API</title>
      <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072588#M3901</link>
      <description>&lt;P&gt;It is possible, and there are a number of ways to do it. If you just want "enter address, get parcel", you'll need to use some kind of &lt;STRONG&gt;locator&lt;/STRONG&gt; service to convert the entered address into a point, then use that point to intersect with the service.&lt;/P&gt;&lt;PRE&gt;geometry=&amp;lt;point from locator&amp;gt;&lt;BR /&gt;geometryType=esriGeometryPoint&lt;BR /&gt;inSR=4326&lt;BR /&gt;sptialRel=esriSpatialRelIntersects&lt;BR /&gt;f=json&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Otherwise, you'll need something to parse the input address, as it appears the table keeps the address in multiple fields. Or possibly have a search tool that takes the various fields as separate inputs.&lt;/P&gt;&lt;PRE&gt;where=SIT_HSE_NU%3D&amp;lt;entered house number&amp;gt; AND SIT_STR_NA%3D&amp;lt;entered street name&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;And so on.&lt;/P&gt;&lt;P&gt;Do you have a preferred tool or coding language you were planning on using for this?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 14:29:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072588#M3901</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-06-25T14:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Query Parcel by Address using an API</title>
      <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072591#M3902</link>
      <description>&lt;P&gt;I'm currently developing in asp.net and JavaScript with Postman to test my API's. Would you also provide a link to where the documentation for the specific topic is located?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to be clear, I will be able to do this on any address in the United States, correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help! Hopefully I will be able to put this API project on my resume!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 14:47:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072591#M3902</guid>
      <dc:creator>JoshuaTrimm</dc:creator>
      <dc:date>2021-06-25T14:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Query Parcel by Address using an API</title>
      <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072627#M3903</link>
      <description>&lt;P&gt;If you're using JavaScript, the&lt;A href="https://developers.arcgis.com/rest/" target="_self"&gt; REST API&lt;/A&gt; is a good place to start. Specifically, you may be interested in&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/rest/services-reference/enterprise/geocode-addresses.htm" target="_self"&gt;Geocoding&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/rest/services-reference/enterprise/query-feature-service-layer-.htm" target="_self"&gt;Querying Layers&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For your second question, that's really something for the &lt;EM&gt;owner&lt;/EM&gt; of that service to answer. I'd check out the layer's documentation / metadata to see if there is a geographic extent given, or use limitations, etc. I tried to visit the link in your screenshot to see the data myself, but it refused to connect.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 15:21:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/query-parcel-by-address-using-an-api/m-p/1072627#M3903</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-06-25T15:21:46Z</dc:date>
    </item>
  </channel>
</rss>

