{"info":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","description":"<html><head></head><body><h1 id=\"housecanary-analytics-api\">HouseCanary Analytics API</h1>\n<p>Welcome to the <a href=\"https://www.housecanary.com/products/data-points/\">HouseCanary Analytics API</a>! You can use the HouseCanary Analytics API to access HouseCanary's proprietary analytics as well as public records data.</p>\n<h2 id=\"making-requests\">Making Requests</h2>\n<h3 id=\"url-structure\">URL structure</h3>\n<p>The HouseCanary API is based on <a href=\"https://en.wikipedia.org/wiki/Representational_state_transfer\">REST</a>.</p>\n<p>The base URL of the API is <a href=\"https://api.housecanary.com\">https://api.housecanary.com</a>. All endpoints have request URLs with the following form: <code>{BASE}/{ENDPOINT}</code>.</p>\n<p>Each property-data endpoint follows the form: <code>{VERSION}/{LEVEL}/{TARGET}</code>, where <code>{VERSION}</code> is either v2 or v3, <code>{LEVEL}</code> is one of the following values, and <code>{TARGET}</code> is the data descriptor such as <code>value</code>, <code>rental_value</code>, <code>details</code>, etc.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Level</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>property</td>\n<td>Individual property: a building or a unit within a building</td>\n</tr>\n<tr>\n<td>block</td>\n<td>US-census block</td>\n</tr>\n<tr>\n<td>blockgroup</td>\n<td>US-census block group</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>US zipcode</td>\n</tr>\n<tr>\n<td>metrodiv</td>\n<td>US-census Metropolitan Division</td>\n</tr>\n<tr>\n<td>msa</td>\n<td>US-census Metropolitan Statistical Area</td>\n</tr>\n<tr>\n<td>reports</td>\n<td>A HouseCanary report</td>\n</tr>\n<tr>\n<td>state</td>\n<td>US State</td>\n</tr>\n</tbody>\n</table>\n</div><p>We also feature API endpoints dedicated to accomplishing other tasks, such as managing a portfolio of properties. These are listed below the \"level\" based property data endpoints:</p>\n<p>Note that while most HouseCanary endpoints are v2 urls, there are a few new endpoints that utilize v3. Be sure to check each endpoint's documentation to confirm the correct base URL structure and version.</p>\n<p><strong>Example (v2):</strong> <code>https://api.housecanary.com/v2/property/value</code> has the version <code>v2</code>, level <code>property</code>, and a target of <code>value</code>, which comprise an endpoint <code>v2/property/value</code>.</p>\n<p><strong>Example (v3):</strong> <code>https://api.housecanary.com/v3/property/hoa_est</code> has the version <code>v3</code>, level <code>property</code>, and a target of <code>hoa_est</code>, which comprise an endpoint <code>v3/property/hoa_est</code>.</p>\n<p>For brevity, we will skip the base URL in most of this document. If the shown URL starts with the slash, the corresponding full URL can always be obtained by prepending it with the base URL.</p>\n<h3 id=\"requests\">Requests</h3>\n<p>Each request URL allows accessing data for items that belong to the URL's level. Items can be specified by the identifiers in the Levels and Identifiers section.</p>\n<ul>\n<li>Data for a single item can be retrieved with a <code>GET</code> request by specifying item identifiers in the query string.</li>\n<li>Data for multiple items can be retrieved in bulk using a single POST request by specifying a sequence of item identifiers in the JSON-encoded body.</li>\n</ul>\n<p>In both cases, the requested items are always members of the same level, that of the URL.</p>\n<h3 id=\"responses\">Responses</h3>\n<p>The responses to both <code>GET</code> and <code>POST</code> requests are JSON arrays representing the sequence of data chunks, one chunk for each requested item, preserving the request sequence order:</p>\n<ul>\n<li>A response to <code>GET</code> requests will contain a single chunk, because the single item was requested.</li>\n<li>A response to <code>POST</code> requests will contain as many chunks as there were items in the requested sequence.</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>In order to use the HouseCanary API, you must obtain a credentials pair (<code>API Key</code>, <code>API Secret</code>) from your <a href=\"https://platform.housecanary.com/api-settings\">settings page</a>.</p>\n<p>Authentication of API requests is made using <a href=\"https://en.wikipedia.org/wiki/Basic_access_authentication\">HTTP Basic Authentication</a>. Use your <code>API Key</code> as the user name and your <code>API Secret</code> as the password for Basic Authentication. HTTPS must be used for all API requests. See the full request examples below that show how to authenticate with the API in various programming languages.</p>\n<p>For Authentication failure information, see the Authentication Failures section below.</p>\n<h3 id=\"test-credentials\">Test Credentials</h3>\n<p>Test credentials are useful for verifying functionality in a development or staging environment. In order to generate test credentials (<code>API Key</code>, <code>API Secret</code>), go to your <a href=\"https://platform.housecanary.com/api-settings\">settings page</a> and use the “New Test API Key” link.</p>\n<p>Your test credentials can be used to make test requests. The HouseCanary API maintains a whitelist of items that can be used in test requests. See the Test Lists group of endpoints to retrieve test identifiers for use with test keys at each property-data entity level.</p>\n<h2 id=\"permissions\">Permissions</h2>\n<p>To use the HouseCanary Analytics API, your user account must have permissions enabled for all API components that you want to access. You can check which components you have enabled in the “Analytics API” section of the <a href=\"https://platform.housecanary.com/api-settings\">API settings</a>. If you have any questions about the components you have access to, contact <a href=\"https://support.housecanary.com/\">support</a>.</p>\n<h2 id=\"levels-and-identifiers\">Levels and Identifiers</h2>\n<p>Different identifiers are used depending on the level of the URL. For example, properties are identified by their addresses, while residential blocks are identified by their census block IDs. The possible identifiers for each level are:</p>\n<ul>\n<li><code>property</code>: any combination of <code>address</code>, <code>unit</code>, <code>state</code>, <code>city</code>, and <code>zipcode</code> that identifies the US address. Usually, this is <code>address</code> and <code>zipcode</code> or <code>address</code>, <code>city</code>, <code>state</code>. Also, a <code>slug</code> can be used.</li>\n<li><code>block</code>: a <code>block_id</code>.</li>\n<li><code>blockgroup</code>: a <code>blockgroup_id</code>.</li>\n<li><code>zip</code>: a <code>zipcode</code>.</li>\n<li><code>metrodiv</code>: a <code>metrodiv</code>.</li>\n<li><code>msa</code>: an <code>msa</code>.</li>\n<li><code>state</code>: a 2-letter acronym of the US state.</li>\n</ul>\n<p>All possible identifiers and their descriptions are listed below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Identifier</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>address</code></td>\n<td>Building number, street name, and optionally unit number</td>\n<td>\"123 Main St\"</td>\n</tr>\n<tr>\n<td><code>unit</code></td>\n<td>Unit number for the property, if needed and not already specified in the address string</td>\n<td>\"Unit 3\"</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>City for the property</td>\n<td>\"San Francisco\"</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>2-letter acronym of the US state</td>\n<td>\"CA\"</td>\n</tr>\n<tr>\n<td><code>zipcode</code></td>\n<td>Zipcode for the property</td>\n<td>\"94105\"</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td>A single URL-safe string identifying the address (obtained from HouseCanary)</td>\n<td>\"123-Example-St-San-Francisco-CA-94105\"</td>\n</tr>\n<tr>\n<td><code>block_id</code></td>\n<td>15-digit census block ID</td>\n<td>\"060750615003005\"</td>\n</tr>\n<tr>\n<td><code>blockgroup_id</code></td>\n<td>12-digit census block group ID</td>\n<td>\"060750615003\"</td>\n</tr>\n<tr>\n<td><code>metrodiv</code></td>\n<td>5-digit Metropolitan Division ID</td>\n<td>\"41884\"</td>\n</tr>\n<tr>\n<td><code>msa</code></td>\n<td>5-digit Metropolitan Statistical Area ID</td>\n<td>\"41860\"</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"get-requests\">GET Requests</h2>\n<p>Using a <code>GET</code> request, you can retrieve data for a single item from an endpoint by specifying item identifiers in the query parameters.</p>\n<h3 id=\"get-url-format\">GET URL Format</h3>\n<p><code>GET https://api.housecanary.com/{VERSION}/{ENDPOINT}?{IDENTIFIERS}</code></p>\n<ul>\n<li><code>{VERSION}</code> is the version relevant to the endpoint you are calling, either <code>v2</code> or <code>v3</code>.</li>\n<li><code>{ENDPOINT}</code> is the specific endpoint you are calling, such as <code>property/value</code>.</li>\n<li><code>{IDENTIFIERS}</code> is the URL-encoded string providing item identifiers as an ampersand-separated list of key=value pairs. Exact identifiers depend on the level of the URL, see <a href=\"#levels-and-identifiers\">Levels and Identifiers</a>.</li>\n</ul>\n<p>Example URL separated into constituent segments:</p>\n<ul>\n<li><code>{BASE}: https://api.housecanary.com</code></li>\n<li><code>{VERSION}: v2/</code></li>\n<li><code>{ENDPOINT}: zip/details</code></li>\n<li><code>{IDENTIFIERS}: zipcode=01234</code></li>\n</ul>\n<p>Then, combined together:</p>\n<p><code>{BASE}/{ENDPOINT}?{IDENTIFIERS}</code>:</p>\n<p><code>https://api.housecanary.com/v2/zip/details?zipcode=01234</code></p>\n<p>Example GET URLs:</p>\n<ul>\n<li><code>https://api.housecanary.com/v2/property/geocode?address=10216+N+Willow+Ave&amp;zipcode=64157</code></li>\n<li><code>https://api.housecanary.com/v2/property/value?address=10216+N+Willow+Ave&amp;zipcode=64157</code></li>\n<li><code>https://api.housecanary.com/v2/property/value?address=65239+Rosanne+Prairie+St&amp;city=Bayardchester&amp;state=CA</code></li>\n<li><code>https://api.housecanary.com/v2/property/rental_value?slug=65239-Rosanne-Prairie-Bayardchester-CA-90113</code></li>\n<li><code>https://api.housecanary.com/v2/block/value_distribution?block_id=012345678901234</code></li>\n<li><code>https://api.housecanary.com/v2/zip/details?zipcode=01234</code></li>\n<li><code>https://api.housecanary.com/v2/msa/hpi_ts?msa=38060</code></li>\n</ul>\n<h2 id=\"post-requests\">POST Requests</h2>\n<p>Using a POST request, you can retrieve data for multiple items by specifying a sequence of item identifiers in the POST body. We strongly recommend using POST requests for batching whenever possible.</p>\n<p><em>Note: POST requests are only supported for the Analytics API. Value Report, Rental Report, and Value Analysis do not support POST requests.</em></p>\n<h3 id=\"post-url-format\">POST URL Format</h3>\n<p><code>POST https://api.housecanary.com/{VERSION}/{ENDPOINT}</code></p>\n<p><code>{VERSION}</code> is the version relevant to the endpoint you are calling, either <code>v2</code> or <code>v3</code>.</p>\n<p><code>{ENDPOINT}</code> is the specific endpoint you are calling, such as <code>property/geocode</code>.</p>\n<p>Example POST URL format:</p>\n<ul>\n<li><code>https://api.housecanary.com/v2/property/geocode</code></li>\n<li><code>https://api.housecanary.com/v2/property/component_mget?components=property/details,property/value</code></li>\n</ul>\n<h3 id=\"post-body\">POST Body</h3>\n<p>All POST requests must have the Content-Type header set to <code>application/json</code> and the POST body must be a valid json array representing a sequence of requested item identifiers.</p>\n<p>There is a limit of 100 items per POST request (i.e. 100 address + zipcode combinations, or 100 block_ids).</p>\n<p>All items in a single POST request must have the same set of keys. For property-level POST requests, either <code>address</code> or <code>slug</code> keys must be present for all items so HouseCanary can identify the specific properties.</p>\n<p>Each item in the json array must contain one or more of the following keys:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Level</th>\n<th>Key</th>\n<th>Required?</th>\n<th>Description</th>\n<th>Value Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>property</td>\n<td>address</td>\n<td>No</td>\n<td>Building number, street name, and optionally unit number</td>\n<td>\"123 Main St\"</td>\n</tr>\n<tr>\n<td>property</td>\n<td>unit</td>\n<td>No</td>\n<td>Unit number for the property, if needed and not already specified in the address string</td>\n<td>\"Unit 3\"</td>\n</tr>\n<tr>\n<td>property</td>\n<td>city</td>\n<td>No</td>\n<td>City for the property</td>\n<td>\"San Francisco\"</td>\n</tr>\n<tr>\n<td>property</td>\n<td>state</td>\n<td>No</td>\n<td>Either the full name or a 2-letter acronym of the US state</td>\n<td>\"CA\"</td>\n</tr>\n<tr>\n<td>property</td>\n<td>zipcode</td>\n<td>No</td>\n<td>5-digit ZIP code for the property</td>\n<td>\"94105\"</td>\n</tr>\n<tr>\n<td>property</td>\n<td>slug</td>\n<td>No</td>\n<td>A single URL-safe string identifying the address (obtained from HouseCanary)</td>\n<td>\"123-Example-St-San-Francisco-CA-94105\"</td>\n</tr>\n<tr>\n<td>block</td>\n<td>block_id</td>\n<td>Yes</td>\n<td>15-digit census block ID</td>\n<td>\"060750615003005\"</td>\n</tr>\n<tr>\n<td>block</td>\n<td>blockgroup_id</td>\n<td>Yes</td>\n<td>12-digit census block ID</td>\n<td>\"060750615003\"</td>\n</tr>\n<tr>\n<td>zipcode</td>\n<td>zipcode</td>\n<td>Yes</td>\n<td>5-digit ZIP code</td>\n<td>\"94105\"</td>\n</tr>\n<tr>\n<td>metrodiv</td>\n<td>metrodiv</td>\n<td>Yes</td>\n<td>5-digit Metropolitan Division ID</td>\n<td>\"41884\"</td>\n</tr>\n<tr>\n<td>msa</td>\n<td>msa</td>\n<td>Yes</td>\n<td>5-digit MSA ID</td>\n<td>\"41860\"</td>\n</tr>\n<tr>\n<td>state</td>\n<td>state</td>\n<td>Yes</td>\n<td>Either the full name or a 2-letter acronym of the US state</td>\n<td>\"CA\"</td>\n</tr>\n<tr>\n<td>any level</td>\n<td>meta</td>\n<td>No</td>\n<td>A purely optional key whose value is an arbitrary string that gets returned along with the item in the response. Use this if desired for client-side item references, descriptions, etc.</td>\n<td>\"1\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example POST body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>[\n  {\n    \"address\": \"10216 N Willow Ave\",\n    \"zipcode\": \"64157\"\n  },\n  {\n    \"address\": \"34813 SE Burrows Way\",\n    \"zipcode\": \"98065\"\n  }\n]\n</code></pre><h2 id=\"rate-limits\">Rate Limits</h2>\n<p>There are limits on how many API requests can be made in a certain period of time. You can see rate limits for your account in API Settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Endpoints</th>\n<th>Rate limit for self-serve customers</th>\n<th>Rate limit for enterprise customers</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Analytics API</td>\n<td>250 components per minute</td>\n<td>Custom</td>\n</tr>\n<tr>\n<td>Value Report</td>\n<td>10 requests per minute</td>\n<td>Custom</td>\n</tr>\n<tr>\n<td>Value Analysis</td>\n<td>10 requests per minute</td>\n<td>Custom</td>\n</tr>\n</tbody>\n</table>\n</div><p>Contact us or view API Settings for custom rate limits.</p>\n<p>Rate limits differ between the Analytics API endpoints and the Value Report endpoints. Rate limits for the Analytics API are counted by the number of components called. One component is the combination of a specific endpoint with an address or other geographic level identifier. Value Report and Value Analysis are rate limited based on number of HTTP requests in the time period.</p>\n<h3 id=\"how-different-analytics-api-requests-count-against-the-component-rate-limit\">How different Analytics API requests count against the component rate limit:</h3>\n<p>GET property/geocode</p>\n<ul>\n<li>1 endpoint</li>\n<li>Only accepts 1 address</li>\n<li>Counts as 1 component against the rate limit</li>\n</ul>\n<p>GET property/component_mget with 2 endpoints specified</p>\n<ul>\n<li>2 endpoints</li>\n<li>Only accepts 1 address</li>\n<li>Counts as 2 components against the rate limit</li>\n</ul>\n<p>POST property/geocode with 3 addresses in the body</p>\n<ul>\n<li>1 endpoint</li>\n<li>3 addresses in the body</li>\n<li>Counts as 3 components against the rate limit</li>\n</ul>\n<p>POST property/component_mget with 4 endpoints specified and 4 addresses in the body</p>\n<ul>\n<li>4 endpoints</li>\n<li>4 addresses in the body</li>\n<li>Counts as 16 components against the rate limit</li>\n</ul>\n<p>Custom response headers are returned from the API to indicate rate limit information:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header Name</th>\n<th>Description</th>\n<th>Example Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>X-RateLimit-Period</td>\n<td>Comma separated values that define the rate limit windows, in seconds</td>\n<td>60</td>\n</tr>\n<tr>\n<td>X-RateLimit-Limit</td>\n<td>Comma separated values that define the number of components or requests the consumer is permitted to make for each rate limit window</td>\n<td>250</td>\n</tr>\n<tr>\n<td>X-RateLimit-Remaining</td>\n<td>Comma separated values that indicate the number of components or requests remaining for each rate limit window</td>\n<td>248</td>\n</tr>\n<tr>\n<td>X-RateLimit-Reset</td>\n<td>Comma separated values that indicate the time at which each rate limit window resets in <a href=\"http://en.wikipedia.org/wiki/Unix_time\">UTC epoch seconds</a></td>\n<td>1525368621</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"security\">Security</h2>\n<p>TLS 1.0, 1.1 and 1.2 are supported. SSL is not supported.</p>\n<h2 id=\"response-codes-and-errors\">Response Codes and Errors</h2>\n<p>The HouseCanary API is built leveraging the REST paradigm. Under normal conditions, the API will return a response with a 200 OK HTTP status code. If an error occurs, the response will contain the appropriate HTTP status code as described below.</p>\n<h3 id=\"api-code-and-api-code-description\">API Code and API Code Description</h3>\n<p>Because a single request can include multiple items or multiple endpoints, each response section returned in a normal 200 response will contain its own <code>api_code</code> and <code>api_code_description</code> fields. These are used to identify business logic errors for those items. The following values may be returned:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>API Code</th>\n<th>API Code Description</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>ok</td>\n<td>Successfully retrieved data for the item</td>\n</tr>\n<tr>\n<td>204</td>\n<td>no content</td>\n<td>Unable to retrieve data for the item</td>\n</tr>\n</tbody>\n</table>\n</div><p>We do not charge for sections returned with a 204 <code>api_code</code>.</p>\n<h3 id=\"400---missing-required-fields-or-incorrect-request-structure\">400 - Missing required fields or incorrect request structure</h3>\n<p>If one or more required fields for an endpoint are missing in the request, a 400 Bad Request status code will be returned, and the response body will contain an explanation of the error.</p>\n<p>A common reason for a 400 response is missing required query parameters.</p>\n<p>We do not charge for requests that result in a response with a 400 status code.</p>\n<h3 id=\"401---authentication-failure\">401 - Authentication failure</h3>\n<p>In the case of authentication failure, a <em>401 Unauthorized</em> status code will be returned.</p>\n<p><em>Note: In the case of an authentication failure, the system will return a 401 without any explanation or description. Should you have any questions on an auth failure, please contact <a href=\"https://support.housecanary.com/\">HouseCanary technical support</a>.</em></p>\n<p>We do not charge for requests that result in a response with a 401 status code.</p>\n<h3 id=\"429---rate-limit-hit\">429 - Rate limit hit</h3>\n<p>If your organization has made all the component requests allowed under your organization’s rate limit, a 429 Too Many Requests status code will be returned, and the response body will contain the message shown to the right. If you run into this error, you must wait until the UTC epoch time returned in the X-RateLimit-Reset header. If you need a large volume of data, HouseCanary is able to support <em>significantly</em> higher rate limits for enterprise customers. <a href=\"https://support.housecanary.com/\">Contact us</a> for more details.</p>\n<p>We do not charge for requests that result in a response with a 429 status code.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"HouseCanary Analytics API","slug":"housecanary-analytics-api"}],"owner":"32869976","collectionId":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","publishedId":"2sBXcLhdZN","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-03-09T20:55:48.000Z"},"item":[{"name":"Property Level","item":[{"name":"Census Information","id":"25de159b-161c-487d-ad98-3e2263cea4d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/census?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Identify US Census geographic areas for a given property, useful for demographic analysis and regional comparisons. </p>\n<p>Source: Census TIGER Data </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit Metropolitan Statistical Area ID</td><td>38060</td>\n        </tr>\n<tr><td>msa_name</td><td>string</td><td>The name of the requested MSA</td><td>San Francisco-Oakland-Berkeley, CA</td>\n        </tr>\n<tr><td>tribal_land</td><td>string</td><td>Whether the property is on US-recognized tribal land</td><td></td>\n        </tr>\n<tr><td>tract</td><td>string</td><td>11-digit 2020 US-census tract number</td><td>060750201004</td>\n        </tr>\n<tr><td>block</td><td>string</td><td>15-digit US-census block ID</td><td>060750313013007</td>\n        </tr>\n<tr><td>block_group</td><td>string</td><td>12-digit US-census block group ID</td><td>060750201004</td>\n        </tr>\n<tr><td>county_name</td><td>string</td><td>The name of the county in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>fips</td><td>string</td><td>5-digit US-census FIPS code for the county in which the property is located</td><td>06075</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","census"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"3fb9edcf-befa-4296-b8ba-464e2d320a51","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/census?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","census"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/census\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Berkeley, CA\",\n        \"tribal_land\": \"string\",\n        \"tract\": \"060750201004\",\n        \"block\": \"060750313013007\",\n        \"block_group\": \"060750201004\",\n        \"county_name\": \"San Francisco\",\n        \"fips\": \"06075\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/census\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Berkeley, CA\",\n        \"tribal_land\": \"string\",\n        \"tract\": \"060750201004\",\n        \"block\": \"060750313013007\",\n        \"block_group\": \"060750201004\",\n        \"county_name\": \"San Francisco\",\n        \"fips\": \"06075\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"578520e2-f3f7-411c-bb47-65a3a42ed91c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/census?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","census"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"6e45947c-1649-4362-be6d-0e6b3265b745","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/census?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","census"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"dbabdb90-19ff-4ccf-a733-5611d0ea5fd0","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/census?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","census"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"25de159b-161c-487d-ad98-3e2263cea4d5"},{"name":"Batch Multiple Endpoints","id":"cc0b07fb-1e7f-4edc-a9c9-3834f31c06eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/component_mget?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&components=property/details,property/school,property/value","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of property endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n<tr><td>components</td><td>string</td><td>Comma separated list of endpoints to include in the response.</td><td>property/details,property/school,property/value</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Comma separated list of endpoints to include in the response.</p>\n","type":"text/plain"},"key":"components","value":"property/details,property/school,property/value"}],"variable":[]}},"response":[{"id":"53bafc11-3fa6-41aa-8cbc-fc062379170c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/component_mget?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&components=property/details,property/school,property/value","host":["https://api.housecanary.com"],"path":["v2","property","component_mget"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Comma separated list of endpoints to include in the response.","key":"components","value":"property/details,property/school,property/value"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"key_0\": false\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"key_0\": 6751,\n        \"key_1\": \"string\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"a8ebabba-ec9f-488a-ac2c-f7a4e973ed52","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/component_mget?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&components=property/details,property/school,property/value","host":["https://api.housecanary.com"],"path":["v2","property","component_mget"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Comma separated list of endpoints to include in the response.","key":"components","value":"property/details,property/school,property/value"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"78959be0-1503-4026-8987-55f31df560f3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/component_mget?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&components=property/details,property/school,property/value","host":["https://api.housecanary.com"],"path":["v2","property","component_mget"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Comma separated list of endpoints to include in the response.","key":"components","value":"property/details,property/school,property/value"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0e923238-09af-4e6a-b353-44337504a9cb","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/component_mget?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&components=property/details,property/school,property/value","host":["https://api.housecanary.com"],"path":["v2","property","component_mget"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Comma separated list of endpoints to include in the response.","key":"components","value":"property/details,property/school,property/value"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"cc0b07fb-1e7f-4edc-a9c9-3834f31c06eb"},{"name":"Batch Multiple Endpoints (Batch)","id":"63a6a3ce-f4ff-40c6-b9e4-0a9c6843cc34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/component_mget?components=property/details,property/school,property/value","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of property endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>components</td><td>string</td><td>Comma separated list of endpoints to include in the response.</td><td>property/details,property/school,property/value</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Comma separated list of endpoints to include in the response.</p>\n","type":"text/plain"},"key":"components","value":"property/details,property/school,property/value"}],"variable":[]}},"response":[{"id":"a7317528-63e4-4c24-8bf6-a3d1abbc8482","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/component_mget?components=property/details,property/school,property/value","host":["https://api.housecanary.com"],"path":["v2","property","component_mget"],"query":[{"description":"Comma separated list of endpoints to include in the response.","key":"components","value":"property/details,property/school,property/value"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"key_0\": false\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"key_0\": 6751,\n        \"key_1\": \"string\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"7d50260a-3d2d-42f4-9079-068d2bc3f430","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/component_mget?components=property/details,property/school,property/value","host":["https://api.housecanary.com"],"path":["v2","property","component_mget"],"query":[{"description":"Comma separated list of endpoints to include in the response.","key":"components","value":"property/details,property/school,property/value"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3759cfe4-64c4-4b9e-a190-207271f7681a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/component_mget?components=property/details,property/school,property/value","host":["https://api.housecanary.com"],"path":["v2","property","component_mget"],"query":[{"description":"Comma separated list of endpoints to include in the response.","key":"components","value":"property/details,property/school,property/value"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4ef96c69-a32c-43ce-8de9-555e2e064c38","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/component_mget?components=property/details,property/school,property/value","host":["https://api.housecanary.com"],"path":["v2","property","component_mget"],"query":[{"description":"Comma separated list of endpoints to include in the response.","key":"components","value":"property/details,property/school,property/value"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"63a6a3ce-f4ff-40c6-b9e4-0a9c6843cc34"},{"name":"Property Details Advanced","id":"565fd8f6-6a6a-48a7-8a89-6f0e65cfc8e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/property/details_advanced?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&type=both","description":"<p>Access various property attributes from county assessor records, enabling comprehensive property profiling, along with HouseCanary data with additional information </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>type</td><td>string</td><td>Specify which results are returned updated</td><td></td>\n        <td>[hc, public, both]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>public_records</td><td>object</td><td>Public Record information</td><td></td>\n        <td></td></tr>\n<tr><td>public_records.architectural_style</td><td>string</td><td>Architectural style of the property</td><td>Colonial</td>\n        <td>[A-Frame, Bungalow, Cape Cod, Colonial, Contemporary, Conventional, Cottage, Custom, Dome, English, French Provincial, Georgian, High-rise, Historical Log Cabin/Rustic, Mansion, Mediterranean, Modern, Other, Prefab, Modular, Raised Ranch, RanchRambler, Spanish, Traditional, Tudor, Unfinished/Under Construction, Victorian]</td></tr>\n<tr><td>public_records.attic</td><td>string</td><td>Attic information</td><td>Finished</td>\n        <td></td></tr>\n<tr><td>public_records.basement</td><td>object</td><td>Basement details</td><td></td>\n        <td></td></tr>\n<tr><td>public_records.basement.finished_pct</td><td>number</td><td>Percentage of finished basement</td><td>75.5</td>\n        <td></td></tr>\n<tr><td>public_records.basement.has</td><td>boolean</td><td>Indicates if the property has a basement</td><td>true</td>\n        <td></td></tr>\n<tr><td>public_records.basement.total_area</td><td>number</td><td>Total basement area</td><td>1200</td>\n        <td></td></tr>\n<tr><td>public_records.bathrooms</td><td>object</td><td>Bathroom information</td><td></td>\n        <td></td></tr>\n<tr><td>public_records.bathrooms.full</td><td>integer</td><td>Number of full bathrooms</td><td>2</td>\n        <td></td></tr>\n<tr><td>public_records.bathrooms.partial</td><td>integer</td><td>Number of partial bathrooms</td><td>1</td>\n        <td></td></tr>\n<tr><td>public_records.bathrooms.total</td><td>number</td><td>Total number of bathrooms</td><td>2.5</td>\n        <td></td></tr>\n<tr><td>public_records.bathrooms.total_provided</td><td>string</td><td>Total number of bathrooms provided</td><td>3</td>\n        <td></td></tr>\n<tr><td>public_records.bathrooms.total_projected</td><td>number</td><td>Total number of projected bathrooms</td><td>3.5</td>\n        <td></td></tr>\n<tr><td>public_records.bedrooms</td><td>integer</td><td>Number of bedrooms</td><td>4</td>\n        <td></td></tr>\n<tr><td>public_records.buildings</td><td>integer</td><td>Number of buildings</td><td>1</td>\n        <td></td></tr>\n<tr><td>public_records.building_quality</td><td>string</td><td>Quality of the building</td><td>Excellent</td>\n        <td></td></tr>\n<tr><td>public_records.building_condition_code</td><td>string</td><td>Condition of the building</td><td>Excellent</td>\n        <td></td></tr>\n<tr><td>public_records.construction_types</td><td>array</td><td>Types of construction</td><td></td>\n        <td></td></tr>\n<tr><td>public_records.construction_types[]</td><td>string</td><td></td><td>Wood Frame</td>\n        <td></td></tr>\n<tr><td>public_records.cooling</td><td>array</td><td>Cooling systems used</td><td></td>\n        <td></td></tr>\n<tr><td>public_records.cooling[]</td><td>string</td><td></td><td>Central Air</td>\n        <td></td></tr>\n<tr><td>public_records.fireplace</td><td>string</td><td>Fireplace information</td><td>Gas</td>\n        <td></td></tr>\n<tr><td>public_records.fireplaces_total</td><td>integer</td><td>Total number of fireplaces</td><td>1</td>\n        <td></td></tr>\n<tr><td>public_records.heating</td><td>array</td><td>Heating systems used</td><td></td>\n        <td></td></tr>\n<tr><td>public_records.heating[]</td><td>string</td><td></td><td>Forced air unit</td>\n        <td>[Baseboard, Central, Coal, Convection, Electric, Floor/Wall, Forced air unit, Gas, Geo-thermal, Gravity, Heat Pump, Hot Water, None, Oil, Other, Partial, Propane, Radiant, Solar, Space/Suspended, Steam, Vent, Wood Burning, Yes, Zone]</td></tr>\n<tr><td>public_records.legal_description</td><td>string</td><td>Legal description of the property</td><td>Lot 123, Block A, Subdivision X</td>\n        <td></td></tr>\n<tr><td>public_records.living_area</td><td>number</td><td>Total living area of the property (square feet)</td><td>2400.4</td>\n        <td></td></tr>\n<tr><td>public_records.living_area_above_grade</td><td>string</td><td>Total living area of the property above grade (square feet)</td><td>1800</td>\n        <td></td></tr>\n<tr><td>public_records.living_area_below_grade</td><td>string</td><td>Total living area of the property below grade (square feet)</td><td>1800</td>\n        <td></td></tr>\n<tr><td>public_records.lot_size</td><td>number</td><td>Size of the lot (square feet)</td><td>10000</td>\n        <td></td></tr>\n<tr><td>public_records.neighborhood</td><td>string</td><td>Neighborhood information</td><td>Suburban</td>\n        <td></td></tr>\n<tr><td>public_records.parcel_id</td><td>string</td><td>Identifier for the parcel on which the property sits</td><td>1829264TC000011000060A</td>\n        <td></td></tr>\n<tr><td>public_records.parking</td><td>object</td><td>Parking information</td><td></td>\n        <td></td></tr>\n<tr><td>public_records.parking.description</td><td>string</td><td>Description of parking</td><td>Attached Garage</td>\n        <td></td></tr>\n<tr><td>public_records.parking.garage</td><td>integer</td><td>Number of garage spaces</td><td>2</td>\n        <td></td></tr>\n<tr><td>public_records.parking.total</td><td>integer</td><td>Total number of parking spaces</td><td>4</td>\n        <td></td></tr>\n<tr><td>public_records.pool</td><td>boolean</td><td>Has a pool</td><td>true</td>\n        <td></td></tr>\n<tr><td>public_records.pool_community</td><td>boolean</td><td>Whether the property is part of a community with a shared pool</td><td>1829264TC000011000060A</td>\n        <td></td></tr>\n<tr><td>public_records.property_type</td><td>string</td><td>Type of property</td><td>SFR</td>\n        <td>[SFR, Townhouse, Condominium, Manufactured/Mobile Home, Multi-Family, Land, Timeshare, Commercial, Other]</td></tr>\n<tr><td>public_records.property_type_description</td><td>string</td><td>A description of the property type</td><td>Single Family Residential</td>\n        <td></td></tr>\n<tr><td>public_records.roof_material</td><td>string</td><td>The roofing material used on the main structure</td><td>Composition Shingle</td>\n        <td></td></tr>\n<tr><td>public_records.roof_type</td><td>string</td><td>Type of roof</td><td>Gable</td>\n        <td>[Bowstring Truss, Dome, Flat, Gable, Gable or Hip, Gambrel, Hip, Irr/Cathedral, Mansard, Prestress Concrete, Reinforced Concrete, Rigid frm bar JT, Sawtooth, Shed, Steel frm/truss, Wood Truss]</td></tr>\n<tr><td>public_records.rooms_total</td><td>integer</td><td>Total number of rooms</td><td>8</td>\n        <td></td></tr>\n<tr><td>public_records.sewer</td><td>boolean</td><td>The type of sewer system on the property</td><td>Public</td>\n        <td></td></tr>\n<tr><td>public_records.sewer_public</td><td>boolean</td><td>Whether the property is connected to a public sewer system</td><td>true</td>\n        <td></td></tr>\n<tr><td>public_records.solar_panels</td><td>boolean</td><td>Whether solar panels are installed</td><td>true</td>\n        <td></td></tr>\n<tr><td>public_records.stories</td><td>integer</td><td>Number of above-grade levels of the main structure</td><td>2</td>\n        <td></td></tr>\n<tr><td>public_records.subdivision</td><td>boolean</td><td>Whether the property is part of a subdivision</td><td>true</td>\n        <td></td></tr>\n<tr><td>public_records.units_total</td><td>integer</td><td></td><td>2</td>\n        <td></td></tr>\n<tr><td>public_records.walls_exterior_material</td><td>string</td><td></td><td>Stucco</td>\n        <td></td></tr>\n<tr><td>public_records.water</td><td>string</td><td>The source of the property's water supply</td><td>City water</td>\n        <td></td></tr>\n<tr><td>public_records.year_built</td><td>integer</td><td>Year the property was built</td><td>1995</td>\n        <td></td></tr>\n<tr><td>public_records.zoning</td><td>object</td><td>Zoning information</td><td></td>\n        <td></td></tr>\n<tr><td>public_records.zoning.code</td><td>string</td><td>The zoning code of the property</td><td>R-1</td>\n        <td></td></tr>\n<tr><td>public_records.zoning.description</td><td>string</td><td>Description of zoning</td><td>This property is zoned as R-1, which designates it for single-family residential use</td>\n        <td></td></tr>\n<tr><td>hc</td><td>object</td><td>HouseCanary information</td><td></td>\n        <td></td></tr>\n<tr><td>hc.architectural_style</td><td>string</td><td>Architectural style of the property</td><td>Contemporary</td>\n        <td></td></tr>\n<tr><td>hc.attic</td><td>string</td><td>Attic information</td><td>Unfinished</td>\n        <td></td></tr>\n<tr><td>hc.basement</td><td>object</td><td>Basement details</td><td></td>\n        <td></td></tr>\n<tr><td>hc.basement.finished_pct</td><td>number</td><td>Percentage of finished basement</td><td>50.2</td>\n        <td></td></tr>\n<tr><td>hc.basement.has</td><td>boolean</td><td>Indicates if the property has a basement</td><td></td>\n        <td></td></tr>\n<tr><td>hc.basement.total_area</td><td>number</td><td>Total basement area</td><td>900</td>\n        <td></td></tr>\n<tr><td>hc.bathrooms</td><td>object</td><td>Bathroom information</td><td></td>\n        <td></td></tr>\n<tr><td>hc.bathrooms.full</td><td>integer</td><td>Number of full bathrooms</td><td>3</td>\n        <td></td></tr>\n<tr><td>hc.bathrooms.partial</td><td>integer</td><td>Number of partial bathrooms</td><td>1</td>\n        <td></td></tr>\n<tr><td>hc.bathrooms.total</td><td>number</td><td>Total number of bathrooms</td><td>3.5</td>\n        <td></td></tr>\n<tr><td>hc.bathrooms.total_provided</td><td>string</td><td>Total number of bathrooms provided</td><td>4</td>\n        <td></td></tr>\n<tr><td>hc.bathrooms.total_projected</td><td>number</td><td>Total number of projected bathrooms</td><td>4.5</td>\n        <td></td></tr>\n<tr><td>hc.bedrooms</td><td>integer</td><td>Number of bedrooms</td><td>3</td>\n        <td></td></tr>\n<tr><td>hc.buildings</td><td>integer</td><td>Number of buildings</td><td>1</td>\n        <td></td></tr>\n<tr><td>hc.building_quality</td><td>string</td><td>Quality of the building</td><td>Good</td>\n        <td></td></tr>\n<tr><td>hc.condition_class</td><td>integer</td><td>The current condition rating of the property as determined by HouseCanary</td><td>C4</td>\n        <td></td></tr>\n<tr><td>hc.construction_types</td><td>array</td><td>Types of construction</td><td></td>\n        <td></td></tr>\n<tr><td>hc.construction_types[]</td><td>string</td><td></td><td>Brick</td>\n        <td></td></tr>\n<tr><td>hc.cooling</td><td>array</td><td>Cooling systems used</td><td></td>\n        <td></td></tr>\n<tr><td>hc.cooling[]</td><td>string</td><td></td><td>Ductless Mini Split</td>\n        <td></td></tr>\n<tr><td>hc.fireplace</td><td>string</td><td>Fireplace information</td><td>Wood Burning</td>\n        <td></td></tr>\n<tr><td>hc.fireplaces_total</td><td>integer</td><td>Total number of fireplaces</td><td>2</td>\n        <td></td></tr>\n<tr><td>hc.heating</td><td>array</td><td>Heating systems used</td><td></td>\n        <td></td></tr>\n<tr><td>hc.heating[]</td><td>string</td><td></td><td>Radiant Heat</td>\n        <td>[Baseboard, Central, Coal, Convection, Electric, Floor/Wall, Forced air unit, Gas, Geo-thermal, Gravity, Heat Pump, Hot Water, None, Oil, Other, Partial, Propane, Radiant, Solar, Space/Suspended, Steam, Vent, Wood Burning, Yes, Zone]</td></tr>\n<tr><td>hc.legal_description</td><td>string</td><td>Legal description of the property</td><td>Lot 456, Block B, Subdivision Y</td>\n        <td></td></tr>\n<tr><td>hc.living_area</td><td>number</td><td>Total living area of the property (square feet)</td><td>1800.4</td>\n        <td></td></tr>\n<tr><td>hc.living_area_above_grade</td><td>string</td><td>Total living area of the property above grade (square feet)</td><td>1800</td>\n        <td></td></tr>\n<tr><td>hc.living_area_below_grade</td><td>string</td><td>Total living area of the property below grade (square feet)</td><td>1800</td>\n        <td></td></tr>\n<tr><td>hc.lot_size</td><td>integer</td><td>Size of the lot (square feet)</td><td>7500</td>\n        <td></td></tr>\n<tr><td>hc.neighborhood</td><td>string</td><td>Neighborhood information</td><td>Urban</td>\n        <td></td></tr>\n<tr><td>hc.parcel_id</td><td>string</td><td>Identifier for the parcel on which the property sits</td><td>1829264TC000011000060A</td>\n        <td></td></tr>\n<tr><td>hc.parking</td><td>object</td><td>Parking information</td><td></td>\n        <td></td></tr>\n<tr><td>hc.parking.description</td><td>string</td><td>Description of parking</td><td>Attached Garage</td>\n        <td></td></tr>\n<tr><td>hc.parking.garage</td><td>integer</td><td>Number of garage spaces</td><td>2</td>\n        <td></td></tr>\n<tr><td>hc.parking.total</td><td>integer</td><td>Total number of parking spaces</td><td>4</td>\n        <td></td></tr>\n<tr><td>hc.pool</td><td>boolean</td><td>Has a pool</td><td>true</td>\n        <td></td></tr>\n<tr><td>hc.pool_community</td><td>boolean</td><td>Whether the property is part of a community with a shared pool</td><td>1829264TC000011000060A</td>\n        <td></td></tr>\n<tr><td>hc.property_type</td><td>string</td><td>Type of property</td><td>Condo</td>\n        <td></td></tr>\n<tr><td>hc.property_type_description</td><td>string</td><td>A description of the property type</td><td>Single Family Residential</td>\n        <td></td></tr>\n<tr><td>hc.roof_material</td><td>string</td><td>The roofing material used on the main structure</td><td>Composition Shingle</td>\n        <td></td></tr>\n<tr><td>hc.roof_type</td><td>string</td><td>Type of roof</td><td>Hip</td>\n        <td></td></tr>\n<tr><td>hc.rooms_total</td><td>integer</td><td>Total number of rooms</td><td>6</td>\n        <td></td></tr>\n<tr><td>hc.sewer</td><td>boolean</td><td>The type of sewer system on the property</td><td>Public</td>\n        <td></td></tr>\n<tr><td>hc.sewer_public</td><td>boolean</td><td>Whether the property is connected to a public sewer system</td><td>true</td>\n        <td></td></tr>\n<tr><td>hc.solar_panels</td><td>boolean</td><td>Whether solar panels are installed</td><td>true</td>\n        <td></td></tr>\n<tr><td>hc.stories</td><td>integer</td><td>Number of above-grade levels of the main structure</td><td>2</td>\n        <td></td></tr>\n<tr><td>hc.subdivision</td><td>boolean</td><td>Whether the property is part of a subdivision</td><td>true</td>\n        <td></td></tr>\n<tr><td>hc.units_total</td><td>integer</td><td></td><td>2</td>\n        <td></td></tr>\n<tr><td>hc.walls_exterior_material</td><td>string</td><td></td><td>Stucco</td>\n        <td></td></tr>\n<tr><td>hc.water</td><td>string</td><td>The source of the property's water supply</td><td>City water</td>\n        <td></td></tr>\n<tr><td>hc.year_built</td><td>integer</td><td>Year the property was built</td><td>2008</td>\n        <td></td></tr>\n<tr><td>hc.zoning</td><td>object</td><td>Zoning information</td><td></td>\n        <td></td></tr>\n<tr><td>hc.zoning.code</td><td>string</td><td>The zoning code of the property</td><td>R-1</td>\n        <td></td></tr>\n<tr><td>hc.zoning.description</td><td>string</td><td>Description of zoning</td><td>This property is zoned as R-1, which designates it for single-family residential use</td>\n        <td></td></tr>\n<tr><td>assessment</td><td>object</td><td>Details about the most recent assessment</td><td></td>\n        <td></td></tr>\n<tr><td>assessment.apn</td><td>string</td><td>Assessor Parcel Number</td><td>9876-54-0-00-789</td>\n        <td></td></tr>\n<tr><td>assessment.amount_annual</td><td>number</td><td>Annual assessment amount</td><td>6800.75</td>\n        <td></td></tr>\n<tr><td>assessment.value_assessed</td><td>integer</td><td>Assessed value of the property</td><td>350000</td>\n        <td></td></tr>\n<tr><td>assessment.value_assessed_improvement</td><td>integer</td><td>Assessed value of improvements</td><td>200000</td>\n        <td></td></tr>\n<tr><td>assessment.value_assessed_land</td><td>integer</td><td>Assessed value of land</td><td>150000</td>\n        <td></td></tr>\n<tr><td>assessment.tax_year</td><td>integer</td><td>Tax year for assessment</td><td>2023</td>\n        <td></td></tr>\n<tr><td>assessment.year_assessed</td><td>integer</td><td>Year of assessment</td><td>2022</td>\n        <td></td></tr>\n<tr><td>errors</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>errors[]</td><td>string</td><td></td><td></td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","details_advanced"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Specify which results are returned updated</p>\n","type":"text/plain"},"key":"type","value":"both"}],"variable":[]}},"response":[{"id":"22bdddb0-d507-452d-8ee3-5bc65d6fce28","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/details_advanced?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&type=both","host":["https://api.housecanary.com"],"path":["v3","property","details_advanced"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Specify which results are returned updated","key":"type","value":"both"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"subject_address\": {\n    \"address_full\": \"123 Main St San Francisco CA 94132\",\n    \"address_id\": 5026,\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"block_id\": \"060750313013007\",\n    \"city\": \"San Francisco\",\n    \"fips\": \"06075\",\n    \"geo_precision\": \"rooftop\",\n    \"latitude\": 37.789,\n    \"longitude\": -122.401,\n    \"state\": \"CA\",\n    \"unit\": \"Apt 1\",\n    \"address\": \"123 Main St\",\n    \"zipcode\": \"94132\",\n    \"zipcode_plus4\": \"1234\",\n    \"msa\": \"41860\"\n  },\n  \"public_records\": {\n    \"architectural_style\": \"Colonial\",\n    \"attic\": \"Finished\",\n    \"basement\": {\n      \"finished_pct\": 75.5,\n      \"has\": true,\n      \"total_area\": 1200\n    },\n    \"bathrooms\": {\n      \"full\": 2,\n      \"partial\": 1,\n      \"total\": 2.5,\n      \"total_provided\": \"3\",\n      \"total_projected\": 3.5\n    },\n    \"bedrooms\": 4,\n    \"buildings\": 1,\n    \"building_quality\": \"Excellent\",\n    \"building_condition_code\": \"Excellent\",\n    \"construction_types\": [\n      \"Wood Frame\",\n      \"Wood Frame\"\n    ],\n    \"cooling\": [\n      \"Central Air\",\n      \"Central Air\"\n    ],\n    \"fireplace\": \"Gas\",\n    \"fireplaces_total\": 1,\n    \"heating\": [\n      \"Forced air unit\",\n      \"Forced air unit\"\n    ],\n    \"legal_description\": \"Lot 123, Block A, Subdivision X\",\n    \"living_area\": 2400.4,\n    \"living_area_above_grade\": \"string\",\n    \"living_area_below_grade\": \"string\",\n    \"lot_size\": 10000,\n    \"neighborhood\": \"Suburban\",\n    \"parcel_id\": \"1829264TC000011000060A\",\n    \"parking\": {\n      \"description\": \"Attached Garage\",\n      \"garage\": 2,\n      \"total\": 4\n    },\n    \"pool\": true,\n    \"pool_community\": false,\n    \"property_type\": \"SFR\",\n    \"property_type_description\": \"Single Family Residential\",\n    \"roof_material\": \"Composition Shingle\",\n    \"roof_type\": \"Gable\",\n    \"rooms_total\": 8,\n    \"sewer\": false,\n    \"sewer_public\": true,\n    \"solar_panels\": true,\n    \"stories\": 2,\n    \"subdivision\": true,\n    \"units_total\": 2,\n    \"walls_exterior_material\": \"Stucco\",\n    \"water\": \"City water\",\n    \"year_built\": 1995,\n    \"zoning\": {\n      \"code\": \"R-1\",\n      \"description\": \"This property is zoned as R-1, which designates it for single-family residential use\"\n    }\n  },\n  \"hc\": {\n    \"architectural_style\": \"Contemporary\",\n    \"attic\": \"Unfinished\",\n    \"basement\": {\n      \"finished_pct\": 50.2,\n      \"has\": false,\n      \"total_area\": 900\n    },\n    \"bathrooms\": {\n      \"full\": 3,\n      \"partial\": 1,\n      \"total\": 3.5,\n      \"total_provided\": \"4\",\n      \"total_projected\": 4.5\n    },\n    \"bedrooms\": 3,\n    \"buildings\": 1,\n    \"building_quality\": \"Good\",\n    \"condition_class\": 9189,\n    \"construction_types\": [\n      \"Brick\",\n      \"Brick\"\n    ],\n    \"cooling\": [\n      \"Ductless Mini Split\",\n      \"Ductless Mini Split\"\n    ],\n    \"fireplace\": \"Wood Burning\",\n    \"fireplaces_total\": 2,\n    \"heating\": [\n      \"Convection\",\n      \"Floor/Wall\"\n    ],\n    \"legal_description\": \"Lot 456, Block B, Subdivision Y\",\n    \"living_area\": 1800.4,\n    \"living_area_above_grade\": \"string\",\n    \"living_area_below_grade\": \"string\",\n    \"lot_size\": 7500,\n    \"neighborhood\": \"Urban\",\n    \"parcel_id\": \"1829264TC000011000060A\",\n    \"parking\": {\n      \"description\": \"Attached Garage\",\n      \"garage\": 2,\n      \"total\": 4\n    },\n    \"pool\": true,\n    \"pool_community\": true,\n    \"property_type\": \"Condo\",\n    \"property_type_description\": \"Single Family Residential\",\n    \"roof_material\": \"Composition Shingle\",\n    \"roof_type\": \"Hip\",\n    \"rooms_total\": 6,\n    \"sewer\": true,\n    \"sewer_public\": true,\n    \"solar_panels\": true,\n    \"stories\": 2,\n    \"subdivision\": true,\n    \"units_total\": 2,\n    \"walls_exterior_material\": \"Stucco\",\n    \"water\": \"City water\",\n    \"year_built\": 2008,\n    \"zoning\": {\n      \"code\": \"R-1\",\n      \"description\": \"This property is zoned as R-1, which designates it for single-family residential use\"\n    }\n  },\n  \"assessment\": {\n    \"apn\": \"9876-54-0-00-789\",\n    \"amount_annual\": 6800.75,\n    \"value_assessed\": 350000,\n    \"value_assessed_improvement\": 200000,\n    \"value_assessed_land\": 150000,\n    \"tax_year\": 2023,\n    \"year_assessed\": 2022\n  },\n  \"errors\": [\n    null,\n    null\n  ]\n}"},{"id":"726c4f50-8248-4c0a-810d-840fbddfd0f3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/details_advanced?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&type=both","host":["https://api.housecanary.com"],"path":["v3","property","details_advanced"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Specify which results are returned updated","key":"type","value":"both"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3fb3f115-a11a-4c76-8df6-d7bca4c6edd5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/details_advanced?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&type=both","host":["https://api.housecanary.com"],"path":["v3","property","details_advanced"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Specify which results are returned updated","key":"type","value":"both"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b9b56d1e-e829-478e-82a8-1184f69a6977","name":"Address not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/details_advanced?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&type=both","host":["https://api.housecanary.com"],"path":["v3","property","details_advanced"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Specify which results are returned updated","key":"type","value":"both"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"e9c2682b-4a10-455c-ac06-8518e7ded172","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/details_advanced?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&type=both","host":["https://api.housecanary.com"],"path":["v3","property","details_advanced"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Specify which results are returned updated","key":"type","value":"both"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"565fd8f6-6a6a-48a7-8a89-6f0e65cfc8e6"},{"name":"Property Details Advanced (Batch) ","id":"d24f5f78-253d-443c-898a-2d5764b3040a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/details_advanced","description":"<p>Access various property attributes from county assessor records, enabling comprehensive property profiling, along with HouseCanary data with additional information </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>[].subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>[].subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>[].subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>[].subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>[].subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>[].subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>[].subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>[].subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>[].public_records</td><td>object</td><td>Public Record information</td><td></td>\n        <td></td></tr>\n<tr><td>[].public_records.architectural_style</td><td>string</td><td>Architectural style of the property</td><td>Colonial</td>\n        <td>[A-Frame, Bungalow, Cape Cod, Colonial, Contemporary, Conventional, Cottage, Custom, Dome, English, French Provincial, Georgian, High-rise, Historical Log Cabin/Rustic, Mansion, Mediterranean, Modern, Other, Prefab, Modular, Raised Ranch, RanchRambler, Spanish, Traditional, Tudor, Unfinished/Under Construction, Victorian]</td></tr>\n<tr><td>[].public_records.attic</td><td>string</td><td>Attic information</td><td>Finished</td>\n        <td></td></tr>\n<tr><td>[].public_records.basement</td><td>object</td><td>Basement details</td><td></td>\n        <td></td></tr>\n<tr><td>[].public_records.basement.finished_pct</td><td>number</td><td>Percentage of finished basement</td><td>75.5</td>\n        <td></td></tr>\n<tr><td>[].public_records.basement.has</td><td>boolean</td><td>Indicates if the property has a basement</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].public_records.basement.total_area</td><td>number</td><td>Total basement area</td><td>1200</td>\n        <td></td></tr>\n<tr><td>[].public_records.bathrooms</td><td>object</td><td>Bathroom information</td><td></td>\n        <td></td></tr>\n<tr><td>[].public_records.bathrooms.full</td><td>integer</td><td>Number of full bathrooms</td><td>2</td>\n        <td></td></tr>\n<tr><td>[].public_records.bathrooms.partial</td><td>integer</td><td>Number of partial bathrooms</td><td>1</td>\n        <td></td></tr>\n<tr><td>[].public_records.bathrooms.total</td><td>number</td><td>Total number of bathrooms</td><td>2.5</td>\n        <td></td></tr>\n<tr><td>[].public_records.bathrooms.total_provided</td><td>string</td><td>Total number of bathrooms provided</td><td>3</td>\n        <td></td></tr>\n<tr><td>[].public_records.bathrooms.total_projected</td><td>number</td><td>Total number of projected bathrooms</td><td>3.5</td>\n        <td></td></tr>\n<tr><td>[].public_records.bedrooms</td><td>integer</td><td>Number of bedrooms</td><td>4</td>\n        <td></td></tr>\n<tr><td>[].public_records.buildings</td><td>integer</td><td>Number of buildings</td><td>1</td>\n        <td></td></tr>\n<tr><td>[].public_records.building_quality</td><td>string</td><td>Quality of the building</td><td>Excellent</td>\n        <td></td></tr>\n<tr><td>[].public_records.building_condition_code</td><td>string</td><td>Condition of the building</td><td>Excellent</td>\n        <td></td></tr>\n<tr><td>[].public_records.construction_types</td><td>array</td><td>Types of construction</td><td></td>\n        <td></td></tr>\n<tr><td>[].public_records.construction_types[]</td><td>string</td><td></td><td>Wood Frame</td>\n        <td></td></tr>\n<tr><td>[].public_records.cooling</td><td>array</td><td>Cooling systems used</td><td></td>\n        <td></td></tr>\n<tr><td>[].public_records.cooling[]</td><td>string</td><td></td><td>Central Air</td>\n        <td></td></tr>\n<tr><td>[].public_records.fireplace</td><td>string</td><td>Fireplace information</td><td>Gas</td>\n        <td></td></tr>\n<tr><td>[].public_records.fireplaces_total</td><td>integer</td><td>Total number of fireplaces</td><td>1</td>\n        <td></td></tr>\n<tr><td>[].public_records.heating</td><td>array</td><td>Heating systems used</td><td></td>\n        <td></td></tr>\n<tr><td>[].public_records.heating[]</td><td>string</td><td></td><td>Forced air unit</td>\n        <td>[Baseboard, Central, Coal, Convection, Electric, Floor/Wall, Forced air unit, Gas, Geo-thermal, Gravity, Heat Pump, Hot Water, None, Oil, Other, Partial, Propane, Radiant, Solar, Space/Suspended, Steam, Vent, Wood Burning, Yes, Zone]</td></tr>\n<tr><td>[].public_records.legal_description</td><td>string</td><td>Legal description of the property</td><td>Lot 123, Block A, Subdivision X</td>\n        <td></td></tr>\n<tr><td>[].public_records.living_area</td><td>number</td><td>Total living area of the property (square feet)</td><td>2400.4</td>\n        <td></td></tr>\n<tr><td>[].public_records.living_area_above_grade</td><td>string</td><td>Total living area of the property above grade (square feet)</td><td>1800</td>\n        <td></td></tr>\n<tr><td>[].public_records.living_area_below_grade</td><td>string</td><td>Total living area of the property below grade (square feet)</td><td>1800</td>\n        <td></td></tr>\n<tr><td>[].public_records.lot_size</td><td>number</td><td>Size of the lot (square feet)</td><td>10000</td>\n        <td></td></tr>\n<tr><td>[].public_records.neighborhood</td><td>string</td><td>Neighborhood information</td><td>Suburban</td>\n        <td></td></tr>\n<tr><td>[].public_records.parcel_id</td><td>string</td><td>Identifier for the parcel on which the property sits</td><td>1829264TC000011000060A</td>\n        <td></td></tr>\n<tr><td>[].public_records.parking</td><td>object</td><td>Parking information</td><td></td>\n        <td></td></tr>\n<tr><td>[].public_records.parking.description</td><td>string</td><td>Description of parking</td><td>Attached Garage</td>\n        <td></td></tr>\n<tr><td>[].public_records.parking.garage</td><td>integer</td><td>Number of garage spaces</td><td>2</td>\n        <td></td></tr>\n<tr><td>[].public_records.parking.total</td><td>integer</td><td>Total number of parking spaces</td><td>4</td>\n        <td></td></tr>\n<tr><td>[].public_records.pool</td><td>boolean</td><td>Has a pool</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].public_records.pool_community</td><td>boolean</td><td>Whether the property is part of a community with a shared pool</td><td>1829264TC000011000060A</td>\n        <td></td></tr>\n<tr><td>[].public_records.property_type</td><td>string</td><td>Type of property</td><td>SFR</td>\n        <td>[SFR, Townhouse, Condominium, Manufactured/Mobile Home, Multi-Family, Land, Timeshare, Commercial, Other]</td></tr>\n<tr><td>[].public_records.property_type_description</td><td>string</td><td>A description of the property type</td><td>Single Family Residential</td>\n        <td></td></tr>\n<tr><td>[].public_records.roof_material</td><td>string</td><td>The roofing material used on the main structure</td><td>Composition Shingle</td>\n        <td></td></tr>\n<tr><td>[].public_records.roof_type</td><td>string</td><td>Type of roof</td><td>Gable</td>\n        <td>[Bowstring Truss, Dome, Flat, Gable, Gable or Hip, Gambrel, Hip, Irr/Cathedral, Mansard, Prestress Concrete, Reinforced Concrete, Rigid frm bar JT, Sawtooth, Shed, Steel frm/truss, Wood Truss]</td></tr>\n<tr><td>[].public_records.rooms_total</td><td>integer</td><td>Total number of rooms</td><td>8</td>\n        <td></td></tr>\n<tr><td>[].public_records.sewer</td><td>boolean</td><td>The type of sewer system on the property</td><td>Public</td>\n        <td></td></tr>\n<tr><td>[].public_records.sewer_public</td><td>boolean</td><td>Whether the property is connected to a public sewer system</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].public_records.solar_panels</td><td>boolean</td><td>Whether solar panels are installed</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].public_records.stories</td><td>integer</td><td>Number of above-grade levels of the main structure</td><td>2</td>\n        <td></td></tr>\n<tr><td>[].public_records.subdivision</td><td>boolean</td><td>Whether the property is part of a subdivision</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].public_records.units_total</td><td>integer</td><td></td><td>2</td>\n        <td></td></tr>\n<tr><td>[].public_records.walls_exterior_material</td><td>string</td><td></td><td>Stucco</td>\n        <td></td></tr>\n<tr><td>[].public_records.water</td><td>string</td><td>The source of the property's water supply</td><td>City water</td>\n        <td></td></tr>\n<tr><td>[].public_records.year_built</td><td>integer</td><td>Year the property was built</td><td>1995</td>\n        <td></td></tr>\n<tr><td>[].public_records.zoning</td><td>object</td><td>Zoning information</td><td></td>\n        <td></td></tr>\n<tr><td>[].public_records.zoning.code</td><td>string</td><td>The zoning code of the property</td><td>R-1</td>\n        <td></td></tr>\n<tr><td>[].public_records.zoning.description</td><td>string</td><td>Description of zoning</td><td>This property is zoned as R-1, which designates it for single-family residential use</td>\n        <td></td></tr>\n<tr><td>[].hc</td><td>object</td><td>HouseCanary information</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.architectural_style</td><td>string</td><td>Architectural style of the property</td><td>Contemporary</td>\n        <td></td></tr>\n<tr><td>[].hc.attic</td><td>string</td><td>Attic information</td><td>Unfinished</td>\n        <td></td></tr>\n<tr><td>[].hc.basement</td><td>object</td><td>Basement details</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.basement.finished_pct</td><td>number</td><td>Percentage of finished basement</td><td>50.2</td>\n        <td></td></tr>\n<tr><td>[].hc.basement.has</td><td>boolean</td><td>Indicates if the property has a basement</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.basement.total_area</td><td>number</td><td>Total basement area</td><td>900</td>\n        <td></td></tr>\n<tr><td>[].hc.bathrooms</td><td>object</td><td>Bathroom information</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.bathrooms.full</td><td>integer</td><td>Number of full bathrooms</td><td>3</td>\n        <td></td></tr>\n<tr><td>[].hc.bathrooms.partial</td><td>integer</td><td>Number of partial bathrooms</td><td>1</td>\n        <td></td></tr>\n<tr><td>[].hc.bathrooms.total</td><td>number</td><td>Total number of bathrooms</td><td>3.5</td>\n        <td></td></tr>\n<tr><td>[].hc.bathrooms.total_provided</td><td>string</td><td>Total number of bathrooms provided</td><td>4</td>\n        <td></td></tr>\n<tr><td>[].hc.bathrooms.total_projected</td><td>number</td><td>Total number of projected bathrooms</td><td>4.5</td>\n        <td></td></tr>\n<tr><td>[].hc.bedrooms</td><td>integer</td><td>Number of bedrooms</td><td>3</td>\n        <td></td></tr>\n<tr><td>[].hc.buildings</td><td>integer</td><td>Number of buildings</td><td>1</td>\n        <td></td></tr>\n<tr><td>[].hc.building_quality</td><td>string</td><td>Quality of the building</td><td>Good</td>\n        <td></td></tr>\n<tr><td>[].hc.condition_class</td><td>integer</td><td>The current condition rating of the property as determined by HouseCanary</td><td>C4</td>\n        <td></td></tr>\n<tr><td>[].hc.construction_types</td><td>array</td><td>Types of construction</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.construction_types[]</td><td>string</td><td></td><td>Brick</td>\n        <td></td></tr>\n<tr><td>[].hc.cooling</td><td>array</td><td>Cooling systems used</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.cooling[]</td><td>string</td><td></td><td>Ductless Mini Split</td>\n        <td></td></tr>\n<tr><td>[].hc.fireplace</td><td>string</td><td>Fireplace information</td><td>Wood Burning</td>\n        <td></td></tr>\n<tr><td>[].hc.fireplaces_total</td><td>integer</td><td>Total number of fireplaces</td><td>2</td>\n        <td></td></tr>\n<tr><td>[].hc.heating</td><td>array</td><td>Heating systems used</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.heating[]</td><td>string</td><td></td><td>Radiant Heat</td>\n        <td>[Baseboard, Central, Coal, Convection, Electric, Floor/Wall, Forced air unit, Gas, Geo-thermal, Gravity, Heat Pump, Hot Water, None, Oil, Other, Partial, Propane, Radiant, Solar, Space/Suspended, Steam, Vent, Wood Burning, Yes, Zone]</td></tr>\n<tr><td>[].hc.legal_description</td><td>string</td><td>Legal description of the property</td><td>Lot 456, Block B, Subdivision Y</td>\n        <td></td></tr>\n<tr><td>[].hc.living_area</td><td>number</td><td>Total living area of the property (square feet)</td><td>1800.4</td>\n        <td></td></tr>\n<tr><td>[].hc.living_area_above_grade</td><td>string</td><td>Total living area of the property above grade (square feet)</td><td>1800</td>\n        <td></td></tr>\n<tr><td>[].hc.living_area_below_grade</td><td>string</td><td>Total living area of the property below grade (square feet)</td><td>1800</td>\n        <td></td></tr>\n<tr><td>[].hc.lot_size</td><td>integer</td><td>Size of the lot (square feet)</td><td>7500</td>\n        <td></td></tr>\n<tr><td>[].hc.neighborhood</td><td>string</td><td>Neighborhood information</td><td>Urban</td>\n        <td></td></tr>\n<tr><td>[].hc.parcel_id</td><td>string</td><td>Identifier for the parcel on which the property sits</td><td>1829264TC000011000060A</td>\n        <td></td></tr>\n<tr><td>[].hc.parking</td><td>object</td><td>Parking information</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.parking.description</td><td>string</td><td>Description of parking</td><td>Attached Garage</td>\n        <td></td></tr>\n<tr><td>[].hc.parking.garage</td><td>integer</td><td>Number of garage spaces</td><td>2</td>\n        <td></td></tr>\n<tr><td>[].hc.parking.total</td><td>integer</td><td>Total number of parking spaces</td><td>4</td>\n        <td></td></tr>\n<tr><td>[].hc.pool</td><td>boolean</td><td>Has a pool</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].hc.pool_community</td><td>boolean</td><td>Whether the property is part of a community with a shared pool</td><td>1829264TC000011000060A</td>\n        <td></td></tr>\n<tr><td>[].hc.property_type</td><td>string</td><td>Type of property</td><td>Condo</td>\n        <td></td></tr>\n<tr><td>[].hc.property_type_description</td><td>string</td><td>A description of the property type</td><td>Single Family Residential</td>\n        <td></td></tr>\n<tr><td>[].hc.roof_material</td><td>string</td><td>The roofing material used on the main structure</td><td>Composition Shingle</td>\n        <td></td></tr>\n<tr><td>[].hc.roof_type</td><td>string</td><td>Type of roof</td><td>Hip</td>\n        <td></td></tr>\n<tr><td>[].hc.rooms_total</td><td>integer</td><td>Total number of rooms</td><td>6</td>\n        <td></td></tr>\n<tr><td>[].hc.sewer</td><td>boolean</td><td>The type of sewer system on the property</td><td>Public</td>\n        <td></td></tr>\n<tr><td>[].hc.sewer_public</td><td>boolean</td><td>Whether the property is connected to a public sewer system</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].hc.solar_panels</td><td>boolean</td><td>Whether solar panels are installed</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].hc.stories</td><td>integer</td><td>Number of above-grade levels of the main structure</td><td>2</td>\n        <td></td></tr>\n<tr><td>[].hc.subdivision</td><td>boolean</td><td>Whether the property is part of a subdivision</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].hc.units_total</td><td>integer</td><td></td><td>2</td>\n        <td></td></tr>\n<tr><td>[].hc.walls_exterior_material</td><td>string</td><td></td><td>Stucco</td>\n        <td></td></tr>\n<tr><td>[].hc.water</td><td>string</td><td>The source of the property's water supply</td><td>City water</td>\n        <td></td></tr>\n<tr><td>[].hc.year_built</td><td>integer</td><td>Year the property was built</td><td>2008</td>\n        <td></td></tr>\n<tr><td>[].hc.zoning</td><td>object</td><td>Zoning information</td><td></td>\n        <td></td></tr>\n<tr><td>[].hc.zoning.code</td><td>string</td><td>The zoning code of the property</td><td>R-1</td>\n        <td></td></tr>\n<tr><td>[].hc.zoning.description</td><td>string</td><td>Description of zoning</td><td>This property is zoned as R-1, which designates it for single-family residential use</td>\n        <td></td></tr>\n<tr><td>[].assessment</td><td>object</td><td>Details about the most recent assessment</td><td></td>\n        <td></td></tr>\n<tr><td>[].assessment.apn</td><td>string</td><td>Assessor Parcel Number</td><td>9876-54-0-00-789</td>\n        <td></td></tr>\n<tr><td>[].assessment.amount_annual</td><td>number</td><td>Annual assessment amount</td><td>6800.75</td>\n        <td></td></tr>\n<tr><td>[].assessment.value_assessed</td><td>integer</td><td>Assessed value of the property</td><td>350000</td>\n        <td></td></tr>\n<tr><td>[].assessment.value_assessed_improvement</td><td>integer</td><td>Assessed value of improvements</td><td>200000</td>\n        <td></td></tr>\n<tr><td>[].assessment.value_assessed_land</td><td>integer</td><td>Assessed value of land</td><td>150000</td>\n        <td></td></tr>\n<tr><td>[].assessment.tax_year</td><td>integer</td><td>Tax year for assessment</td><td>2023</td>\n        <td></td></tr>\n<tr><td>[].assessment.year_assessed</td><td>integer</td><td>Year of assessment</td><td>2022</td>\n        <td></td></tr>\n<tr><td>[].errors</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].errors[]</td><td>string</td><td></td><td></td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","details_advanced"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"9a4380cc-4bfb-4e56-9782-15782ea10726","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/details_advanced"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 3286,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"public_records\": {\n      \"architectural_style\": \"Colonial\",\n      \"attic\": \"Finished\",\n      \"basement\": {\n        \"finished_pct\": 75.5,\n        \"has\": true,\n        \"total_area\": 1200\n      },\n      \"bathrooms\": {\n        \"full\": 2,\n        \"partial\": 1,\n        \"total\": 2.5,\n        \"total_provided\": \"3\",\n        \"total_projected\": 3.5\n      },\n      \"bedrooms\": 4,\n      \"buildings\": 1,\n      \"building_quality\": \"Excellent\",\n      \"building_condition_code\": \"Excellent\",\n      \"construction_types\": [\n        \"Wood Frame\",\n        \"Wood Frame\"\n      ],\n      \"cooling\": [\n        \"Central Air\",\n        \"Central Air\"\n      ],\n      \"fireplace\": \"Gas\",\n      \"fireplaces_total\": 1,\n      \"heating\": [\n        \"Forced air unit\",\n        \"Forced air unit\"\n      ],\n      \"legal_description\": \"Lot 123, Block A, Subdivision X\",\n      \"living_area\": 2400.4,\n      \"living_area_above_grade\": \"string\",\n      \"living_area_below_grade\": \"string\",\n      \"lot_size\": 10000,\n      \"neighborhood\": \"Suburban\",\n      \"parcel_id\": \"1829264TC000011000060A\",\n      \"parking\": {\n        \"description\": \"Attached Garage\",\n        \"garage\": 2,\n        \"total\": 4\n      },\n      \"pool\": true,\n      \"pool_community\": true,\n      \"property_type\": \"SFR\",\n      \"property_type_description\": \"Single Family Residential\",\n      \"roof_material\": \"Composition Shingle\",\n      \"roof_type\": \"Gable\",\n      \"rooms_total\": 8,\n      \"sewer\": true,\n      \"sewer_public\": true,\n      \"solar_panels\": true,\n      \"stories\": 2,\n      \"subdivision\": true,\n      \"units_total\": 2,\n      \"walls_exterior_material\": \"Stucco\",\n      \"water\": \"City water\",\n      \"year_built\": 1995,\n      \"zoning\": {\n        \"code\": \"R-1\",\n        \"description\": \"This property is zoned as R-1, which designates it for single-family residential use\"\n      }\n    },\n    \"hc\": {\n      \"architectural_style\": \"Contemporary\",\n      \"attic\": \"Unfinished\",\n      \"basement\": {\n        \"finished_pct\": 50.2,\n        \"has\": false,\n        \"total_area\": 900\n      },\n      \"bathrooms\": {\n        \"full\": 3,\n        \"partial\": 1,\n        \"total\": 3.5,\n        \"total_provided\": \"4\",\n        \"total_projected\": 4.5\n      },\n      \"bedrooms\": 3,\n      \"buildings\": 1,\n      \"building_quality\": \"Good\",\n      \"condition_class\": 9221,\n      \"construction_types\": [\n        \"Brick\",\n        \"Brick\"\n      ],\n      \"cooling\": [\n        \"Ductless Mini Split\",\n        \"Ductless Mini Split\"\n      ],\n      \"fireplace\": \"Wood Burning\",\n      \"fireplaces_total\": 2,\n      \"heating\": [\n        \"Solar\",\n        \"Wood Burning\"\n      ],\n      \"legal_description\": \"Lot 456, Block B, Subdivision Y\",\n      \"living_area\": 1800.4,\n      \"living_area_above_grade\": \"string\",\n      \"living_area_below_grade\": \"string\",\n      \"lot_size\": 7500,\n      \"neighborhood\": \"Urban\",\n      \"parcel_id\": \"1829264TC000011000060A\",\n      \"parking\": {\n        \"description\": \"Attached Garage\",\n        \"garage\": 2,\n        \"total\": 4\n      },\n      \"pool\": true,\n      \"pool_community\": false,\n      \"property_type\": \"Condo\",\n      \"property_type_description\": \"Single Family Residential\",\n      \"roof_material\": \"Composition Shingle\",\n      \"roof_type\": \"Hip\",\n      \"rooms_total\": 6,\n      \"sewer\": false,\n      \"sewer_public\": true,\n      \"solar_panels\": true,\n      \"stories\": 2,\n      \"subdivision\": true,\n      \"units_total\": 2,\n      \"walls_exterior_material\": \"Stucco\",\n      \"water\": \"City water\",\n      \"year_built\": 2008,\n      \"zoning\": {\n        \"code\": \"R-1\",\n        \"description\": \"This property is zoned as R-1, which designates it for single-family residential use\"\n      }\n    },\n    \"assessment\": {\n      \"apn\": \"9876-54-0-00-789\",\n      \"amount_annual\": 6800.75,\n      \"value_assessed\": 350000,\n      \"value_assessed_improvement\": 200000,\n      \"value_assessed_land\": 150000,\n      \"tax_year\": 2023,\n      \"year_assessed\": 2022\n    },\n    \"errors\": [\n      null,\n      null\n    ]\n  },\n  {\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 3983,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"public_records\": {\n      \"architectural_style\": \"Colonial\",\n      \"attic\": \"Finished\",\n      \"basement\": {\n        \"finished_pct\": 75.5,\n        \"has\": true,\n        \"total_area\": 1200\n      },\n      \"bathrooms\": {\n        \"full\": 2,\n        \"partial\": 1,\n        \"total\": 2.5,\n        \"total_provided\": \"3\",\n        \"total_projected\": 3.5\n      },\n      \"bedrooms\": 4,\n      \"buildings\": 1,\n      \"building_quality\": \"Excellent\",\n      \"building_condition_code\": \"Excellent\",\n      \"construction_types\": [\n        \"Wood Frame\",\n        \"Wood Frame\"\n      ],\n      \"cooling\": [\n        \"Central Air\",\n        \"Central Air\"\n      ],\n      \"fireplace\": \"Gas\",\n      \"fireplaces_total\": 1,\n      \"heating\": [\n        \"Forced air unit\",\n        \"Forced air unit\"\n      ],\n      \"legal_description\": \"Lot 123, Block A, Subdivision X\",\n      \"living_area\": 2400.4,\n      \"living_area_above_grade\": \"string\",\n      \"living_area_below_grade\": \"string\",\n      \"lot_size\": 10000,\n      \"neighborhood\": \"Suburban\",\n      \"parcel_id\": \"1829264TC000011000060A\",\n      \"parking\": {\n        \"description\": \"Attached Garage\",\n        \"garage\": 2,\n        \"total\": 4\n      },\n      \"pool\": true,\n      \"pool_community\": true,\n      \"property_type\": \"SFR\",\n      \"property_type_description\": \"Single Family Residential\",\n      \"roof_material\": \"Composition Shingle\",\n      \"roof_type\": \"Gable\",\n      \"rooms_total\": 8,\n      \"sewer\": true,\n      \"sewer_public\": true,\n      \"solar_panels\": true,\n      \"stories\": 2,\n      \"subdivision\": true,\n      \"units_total\": 2,\n      \"walls_exterior_material\": \"Stucco\",\n      \"water\": \"City water\",\n      \"year_built\": 1995,\n      \"zoning\": {\n        \"code\": \"R-1\",\n        \"description\": \"This property is zoned as R-1, which designates it for single-family residential use\"\n      }\n    },\n    \"hc\": {\n      \"architectural_style\": \"Contemporary\",\n      \"attic\": \"Unfinished\",\n      \"basement\": {\n        \"finished_pct\": 50.2,\n        \"has\": false,\n        \"total_area\": 900\n      },\n      \"bathrooms\": {\n        \"full\": 3,\n        \"partial\": 1,\n        \"total\": 3.5,\n        \"total_provided\": \"4\",\n        \"total_projected\": 4.5\n      },\n      \"bedrooms\": 3,\n      \"buildings\": 1,\n      \"building_quality\": \"Good\",\n      \"condition_class\": 728,\n      \"construction_types\": [\n        \"Brick\",\n        \"Brick\"\n      ],\n      \"cooling\": [\n        \"Ductless Mini Split\",\n        \"Ductless Mini Split\"\n      ],\n      \"fireplace\": \"Wood Burning\",\n      \"fireplaces_total\": 2,\n      \"heating\": [\n        \"Partial\",\n        \"Gas\"\n      ],\n      \"legal_description\": \"Lot 456, Block B, Subdivision Y\",\n      \"living_area\": 1800.4,\n      \"living_area_above_grade\": \"string\",\n      \"living_area_below_grade\": \"string\",\n      \"lot_size\": 7500,\n      \"neighborhood\": \"Urban\",\n      \"parcel_id\": \"1829264TC000011000060A\",\n      \"parking\": {\n        \"description\": \"Attached Garage\",\n        \"garage\": 2,\n        \"total\": 4\n      },\n      \"pool\": true,\n      \"pool_community\": false,\n      \"property_type\": \"Condo\",\n      \"property_type_description\": \"Single Family Residential\",\n      \"roof_material\": \"Composition Shingle\",\n      \"roof_type\": \"Hip\",\n      \"rooms_total\": 6,\n      \"sewer\": false,\n      \"sewer_public\": true,\n      \"solar_panels\": true,\n      \"stories\": 2,\n      \"subdivision\": true,\n      \"units_total\": 2,\n      \"walls_exterior_material\": \"Stucco\",\n      \"water\": \"City water\",\n      \"year_built\": 2008,\n      \"zoning\": {\n        \"code\": \"R-1\",\n        \"description\": \"This property is zoned as R-1, which designates it for single-family residential use\"\n      }\n    },\n    \"assessment\": {\n      \"apn\": \"9876-54-0-00-789\",\n      \"amount_annual\": 6800.75,\n      \"value_assessed\": 350000,\n      \"value_assessed_improvement\": 200000,\n      \"value_assessed_land\": 150000,\n      \"tax_year\": 2023,\n      \"year_assessed\": 2022\n    },\n    \"errors\": [\n      null,\n      null\n    ]\n  }\n]"},{"id":"586e692f-aa2b-47aa-9656-1de234bd3383","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/details_advanced"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"6b7a0ba5-b701-472b-bc24-d83f356f0775","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/details_advanced"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9b63c2e6-9f06-41af-8bae-415f760c562c","name":"Address not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/details_advanced"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"573addd1-5dda-4cb5-b10d-ec971fbcf707","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/details_advanced"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d24f5f78-253d-443c-898a-2d5764b3040a"},{"name":"Property Details","id":"0c8d0cd0-4d20-4d68-bfb0-22a11ee09d3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Access various property attributes from county assessor records, enabling comprehensive property profiling. </p>\n<p>Source: Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property</td><td>object</td><td>Property information sourced from county public record</td><td></td>\n        <td></td></tr>\n<tr><td>property.no_of_buildings</td><td>number</td><td>Number of buildings</td><td>2</td>\n        <td></td></tr>\n<tr><td>property.attic</td><td>boolean</td><td><code>true</code> if home has attic. <code>false</code> otherwise</td><td></td>\n        <td></td></tr>\n<tr><td>property.total_bath_count</td><td>number</td><td>Total bathroom count as recorded by the assessor</td><td>2.5</td>\n        <td></td></tr>\n<tr><td>property.full_bath_count</td><td>number</td><td>Count of full bathrooms as recorded by the assessor</td><td>2</td>\n        <td></td></tr>\n<tr><td>property.partial_bath_count</td><td>number</td><td>Partial bathroom count, if provided by the county assessor</td><td>0.5</td>\n        <td></td></tr>\n<tr><td>property.total_number_of_rooms</td><td>number</td><td>Total number of rooms in the property, including bedrooms, living rooms, kitchens, and other finished spaces. This does not include bathrooms</td><td>5</td>\n        <td></td></tr>\n<tr><td>property.heating</td><td>string</td><td>Type of heating unit. One of [<code>Yes</code>, <code>No</code>, <code>Baseboard</code>, <code>Central</code>, <code>Coal</code>, <code>Convection</code>, <code>Electric</code>, <code>Floor/Wall</code>, <code>Forced air unit</code>, <code>Gas</code>, <code>Geo-thermal</code>, <code>Gravity</code>, <code>Heat Pump</code>, <code>Hot Water</code>, <code>None</code>, <code>Oil</code>, <code>Other</code>, <code>Partial</code>, <code>Propane</code>, <code>Radiant</code>, <code>Solar</code>, <code>Space/Suspended</code>, <code>Steam</code>, <code>Vent</code>, <code>Wood Burning</code>, <code>Yes</code>, <code>Zone</code>]</td><td>forced_air_unit</td>\n        <td>[yes, no, baseboard, central, coal, convection, electric, floor_wall, forced_air_unit, gas, geo_thermal, gravity, heat_pump, hot_water, none, oil, other, partial, propane, radiant, solar, space_suspended, steam, vent, wood_burning, yes, zone]</td></tr>\n<tr><td>property.heating_fuel_type</td><td>string</td><td>Type of fuel or energy source used for the property’s primary heating system</td><td>gas</td>\n        <td>[coal, electric, gas, geo_thermal, none, oil, propane]</td></tr>\n<tr><td>property.style</td><td>string</td><td>Property architectural style. One of [<code>A-Frame</code>, <code>Bungalow</code>, <code>Cape Cod</code>, <code>Colonial</code>, <code>Contemporary</code>, <code>Conventional</code>, <code>Cottage</code>, <code>Custom</code>, <code>Dome</code>, <code>English</code>, <code>French Provincial</code>, <code>Georgian</code>, <code>High-rise</code>, <code>Historical</code>, <code>Log Cabin/Rustic</code>, <code>Mansion</code>, <code>Mediterranean</code>, <code>Modern</code>, <code>Other</code>, <code>Prefab</code>, <code>Modular</code>, <code>Raised Ranch</code>, <code>Ranch/Rambler</code>, <code>Spanish</code>, <code>Traditional</code>, <code>Tudor</code>, <code>Unfinished/Under Construction</code>, <code>Victorian</code>]</td><td>a_frame</td>\n        <td>[a_frame, bungalow, cape_cod, colonial, contemporary, conventional, cottage, custom, dome, english, french_provincial, georgian, high_rise, historical, log_cabin_rustic, mansion, mediterranean, modern, other, prefab, modular, raised_ranch, ranch_rambler, spanish, traditional, tudor, unfinished_under_construction, victorian]</td></tr>\n<tr><td>property.garage_parking_of_cars</td><td>number</td><td>Number of cars that can be parked in garage areas</td><td>1</td>\n        <td></td></tr>\n<tr><td>property.site_area_acres</td><td>number</td><td>Total area of the land in acres</td><td>2.5</td>\n        <td></td></tr>\n<tr><td>property.number_of_units</td><td>number</td><td>Number of units</td><td>20</td>\n        <td></td></tr>\n<tr><td>property.building_area_sq_ft</td><td>number</td><td>Area of building(s) in square feet</td><td>1974</td>\n        <td></td></tr>\n<tr><td>property.garage_type_parking</td><td>string</td><td>Type of parking area. One of [<code>Attached Garage</code>, <code>Built-in</code>, <code>Carport</code>, <code>Covered</code>, <code>Detached Garage</code>, <code>Garage</code>, <code>Mixed</code>, <code>None</code>, <code>Offsite</code>, <code>Open</code>, <code>Parking Lot</code>, <code>Parking Structure</code>, <code>Paved/Surfaced</code>, <code>Pole</code>, <code>Ramp</code>, <code>Tuckunder</code>, <code>Underground/Basement</code>, <code>Unimproved</code>, <code>Yes</code>]</td><td>carport</td>\n        <td>[attached_garage, built_in, carport, covered, detached_garage, garage, mixed, none, offsite, open, parking_lot, parking_structure, paved_surfaced, pole, ramp, tuckunder, underground_basement, unimproved, yes]</td></tr>\n<tr><td>property.basement</td><td>string</td><td>Description of basement. One of [<code>Full Basement</code>, <code>Daylight Full</code>, <code>Full</code>, <code>Improved Basement Finished</code>, <code>Daylight Partial</code>, <code>No Basement</code>, <code>Full Basement</code>, <code>No Basement</code>, <code>Partial Basement</code>, <code>Unfinished Basement</code>]</td><td>full_basement</td>\n        <td>[full_basement, daylight_full, full, improved_basement_finished, daylight_partial, no_basement, full_basement, no_basement, partial_basement, unfinished_basement]</td></tr>\n<tr><td>property.air_conditioning</td><td>string</td><td><code>yes</code> if home has air conditioning. <code>no</code> otherwise</td><td>yes</td>\n        <td>[yes, no]</td></tr>\n<tr><td>property.fireplace</td><td>string</td><td><code>true</code> if home has fireplace. <code>false</code> otherwise</td><td>gas</td>\n        <td></td></tr>\n<tr><td>property.pool</td><td>boolean</td><td>Whether the property has a pool</td><td>true</td>\n        <td></td></tr>\n<tr><td>property.no_of_stories</td><td>number</td><td>Number of floors</td><td>3</td>\n        <td></td></tr>\n<tr><td>property.water</td><td>string</td><td>Water connection. One of [<code>Cistern</code>, <code>Municipal</code>, <code>None</code>, <code>Spring</code>, <code>Well</code>, <code>Yes</code>]</td><td>municipal</td>\n        <td>[cistern, municipal, none, spring, well, yes]</td></tr>\n<tr><td>property.year_built</td><td>number</td><td>Year the property was constructed</td><td>2005</td>\n        <td></td></tr>\n<tr><td>property.exterior_walls</td><td>string</td><td>Type of exterior walls. One of [<code>Adobe</code>, <code>Asbestos shingle</code>, <code>Block</code>, <code>Brick</code>, <code>Brick veneer</code>, <code>Combination</code>, <code>Composition</code>, <code>Concrete</code>, <code>Concrete Block</code>, <code>Glass</code>, <code>Log</code>, <code>Marble</code>, <code>Masonry</code>, <code>Metal</code>, <code>Other</code>, <code>Rock</code>, <code>Stone</code>, <code>Shingle (Not Wood)</code>, <code>Siding (Alum/Vinyl)</code>, <code>Stucco</code>, <code>Tile</code>, <code>Tilt-up (pre-cast concrete)</code>, <code>Wood</code>, <code>Wood Shingle</code>, <code>Wood Siding</code>]</td><td>wood</td>\n        <td>[adobe, asbestos_shingle, block, brick, brick_veneer, combination, composition, concrete, concrete_block, glass, log, marble, masonry, metal, other, rock, stone, shingle_not_wood, siding_alum_vinyl, stucco, tile, tilt_up_pre_cast_concrete, wood, wood_shingle, wood_siding]</td></tr>\n<tr><td>property.number_of_bedrooms</td><td>number</td><td>Number of bedrooms</td><td>5</td>\n        <td></td></tr>\n<tr><td>property.sewer</td><td>string</td><td>Sewage connection. One of [<code>Municipal</code>, <code>None</code>, <code>Storm</code>, <code>Septic</code>, <code>Yes</code>]</td><td>public</td>\n        <td>[municipal, none, storm, septic, yes]</td></tr>\n<tr><td>property.property_type</td><td>string</td><td>Type of property</td><td>Single Family Residential</td>\n        <td>[Single Family Residential, Townhouse, Condominium, Manufactured/Mobile Home, Multi-Family, Land, Timeshare, Commercial, Other]</td></tr>\n<tr><td>property.subdivision</td><td>string</td><td>Subdivision as reported to the assessor</td><td>Pinecrest Estates</td>\n        <td></td></tr>\n<tr><td>property.building_quality_score</td><td>number</td><td>Possible building quality score. Values range from <code>1</code> to <code>5</code>. <code>5</code> = A grade, <code>4</code> = B grade, <code>4</code> = C grade, <code>2</code> = D grade, <code>1</code> = E grade</td><td>2</td>\n        <td></td></tr>\n<tr><td>property.building_condition_score</td><td>number</td><td>Possible building condition score. Values range from <code>1</code> to <code>5</code>. <code>5</code> = Excellent, <code>4</code> = Good, <code>3</code> = Fair, <code>2</code> = Poor, <code>1</code> = Unsound</td><td>2</td>\n        <td></td></tr>\n<tr><td>property.construction_type</td><td>string</td><td>Primary construction material. One of [<code>Adobe</code>, <code>Brick</code>, <code>Concrete</code>, <code>Concrete Block</code>, <code>Dome</code>, <code>Frame</code>, <code>Heavy</code>, <code>Light</code>, <code>Log</code>, <code>Manufactured</code>, <code>Other</code>, <code>Masonry</code>, <code>Metal</code>, <code>Steel</code>, <code>Stone</code>, <code>Tilt-up (pre-cast concrete)</code>, <code>Wood</code>, <code>Mixed</code>]</td><td>Dome</td>\n        <td>[Adobe, Brick, Concrete, Concrete Block, Dome, Frame, Heavy, Light, Log, Manufactured, Other, Masonry, Metal, Steel, Stone, Tilt-up (pre-cast concrete), Wood, Mixed]</td></tr>\n<tr><td>property.roof_cover</td><td>string</td><td>Material the roof is made of. One of [<code>Aluminum</code>, <code>Asbestos</code>, <code>Asphalt</code>, <code>Bermuda</code>, <code>Built-up</code>, <code>Composition Shingle</code>, <code>Concrete</code>, <code>Fiberglass</code>, <code>Gravel/Rock</code>, <code>Gypsum</code>, <code>Masonite/ Cement Shake</code>, <code>Metal</code>, <code>Other</code>, <code>Roll Composition</code>, <code>Slate</code>, <code>Steel</code>, <code>Shingle (Not Wood)</code>, <code>Tar &amp; Gravel</code>, <code>Tile</code>, <code>Urethane</code>, <code>Wood</code>, <code>Wood Shake/ Shingles</code>]</td><td>Asphalt</td>\n        <td>[Aluminum, Asbestos, Asphalt, Bermuda, Built-up, Composition Shingle, Concrete, Fiberglass, Gravel/Rock, Gypsum, Masonite/ Cement Shake, Metal, Other, Roll Composition, Slate, Steel, Shingle (Not Wood), Tar &amp; Gravel, Tile, Urethane, Wood, Wood Shake/ Shingles]</td></tr>\n<tr><td>property.roof_type</td><td>string</td><td>Roof structure. One of [<code>Bowstring Truss</code>, <code>Dome</code>,<code>Flat</code>, <code>Gable</code>, <code>Gable or Hip</code>, <code>Gambrel</code>, <code>Hip</code>, <code>Irr/Cathedral</code>, <code>Mansard</code>, <code>Prestress Concrete</code>, <code>Reinforced Concrete</code>, <code>Rigid frm bar JT</code>, <code>Sawtooth</code>, <code>Shed</code>, <code>Steel frm/truss</code>, <code>Wood Truss</code>]</td><td>Dome</td>\n        <td>[Bowstring Truss, Dome, Flat, Gable, Gable or Hip, Gambrel, Hip, Irr/Cathedral, Mansard, Prestress Concrete, Reinforced Concrete, Rigid frm bar JT, Sawtooth, Shed, Steel frm/truss, Wood Truss]</td></tr>\n<tr><td>property.zoning</td><td>string</td><td>County-specific property zoning</td><td>R-1 Residential</td>\n        <td></td></tr>\n<tr><td>assessment</td><td>object</td><td>Details about the most recent assessment</td><td></td>\n        <td></td></tr>\n<tr><td>assessment.apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>167-77-021</td>\n        <td></td></tr>\n<tr><td>assessment.assessment_year</td><td>number</td><td>Year the assessment was conducted</td><td>2023</td>\n        <td></td></tr>\n<tr><td>assessment.tax_amount</td><td>number</td><td>Amount in dollars of tax owed on the property</td><td>3500.75</td>\n        <td></td></tr>\n<tr><td>assessment.total_assessed_value</td><td>number</td><td>The total current assessed value of both land and improvements (before exemptions, if any) as reported on the county tax/assessment roll.</td><td>500000</td>\n        <td></td></tr>\n<tr><td>assessment.tax_year</td><td>number</td><td>Tax year for which the assessment applies</td><td>2022</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","details"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"6c9e1710-cc24-43f7-bc95-dd27a627d8a2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property\": {\n          \"no_of_buildings\": 2,\n          \"attic\": false,\n          \"total_bath_count\": 2.5,\n          \"full_bath_count\": 2,\n          \"partial_bath_count\": 0.5,\n          \"total_number_of_rooms\": 5,\n          \"heating\": \"forced_air_unit\",\n          \"heating_fuel_type\": \"gas\",\n          \"style\": \"a_frame\",\n          \"garage_parking_of_cars\": 1,\n          \"site_area_acres\": 2.5,\n          \"number_of_units\": 20,\n          \"building_area_sq_ft\": 1974,\n          \"garage_type_parking\": \"carport\",\n          \"basement\": \"full_basement\",\n          \"air_conditioning\": \"yes\",\n          \"fireplace\": \"gas\",\n          \"pool\": true,\n          \"no_of_stories\": 3,\n          \"water\": \"municipal\",\n          \"year_built\": 2005,\n          \"exterior_walls\": \"wood\",\n          \"number_of_bedrooms\": 5,\n          \"sewer\": \"storm\",\n          \"property_type\": \"Single Family Residential\",\n          \"subdivision\": \"Pinecrest Estates\",\n          \"building_quality_score\": 2,\n          \"building_condition_score\": 2,\n          \"construction_type\": \"Dome\",\n          \"roof_cover\": \"Asphalt\",\n          \"roof_type\": \"Dome\",\n          \"zoning\": \"R-1 Residential\"\n        },\n        \"assessment\": {\n          \"apn\": \"167-77-021\",\n          \"assessment_year\": 2023,\n          \"tax_amount\": 3500.75,\n          \"total_assessed_value\": 500000,\n          \"tax_year\": 2022\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property\": {\n          \"no_of_buildings\": 2,\n          \"attic\": false,\n          \"total_bath_count\": 2.5,\n          \"full_bath_count\": 2,\n          \"partial_bath_count\": 0.5,\n          \"total_number_of_rooms\": 5,\n          \"heating\": \"forced_air_unit\",\n          \"heating_fuel_type\": \"gas\",\n          \"style\": \"a_frame\",\n          \"garage_parking_of_cars\": 1,\n          \"site_area_acres\": 2.5,\n          \"number_of_units\": 20,\n          \"building_area_sq_ft\": 1974,\n          \"garage_type_parking\": \"carport\",\n          \"basement\": \"full_basement\",\n          \"air_conditioning\": \"yes\",\n          \"fireplace\": \"gas\",\n          \"pool\": true,\n          \"no_of_stories\": 3,\n          \"water\": \"municipal\",\n          \"year_built\": 2005,\n          \"exterior_walls\": \"wood\",\n          \"number_of_bedrooms\": 5,\n          \"sewer\": \"yes\",\n          \"property_type\": \"Single Family Residential\",\n          \"subdivision\": \"Pinecrest Estates\",\n          \"building_quality_score\": 2,\n          \"building_condition_score\": 2,\n          \"construction_type\": \"Dome\",\n          \"roof_cover\": \"Asphalt\",\n          \"roof_type\": \"Dome\",\n          \"zoning\": \"R-1 Residential\"\n        },\n        \"assessment\": {\n          \"apn\": \"167-77-021\",\n          \"assessment_year\": 2023,\n          \"tax_amount\": 3500.75,\n          \"total_assessed_value\": 500000,\n          \"tax_year\": 2022\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"32e13561-efb9-4506-ae74-41ade110a340","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1e3f61aa-81f0-4d9e-88a8-acff2abd5395","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"027bef3b-1558-449a-97b9-52ebf0b95a67","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0c8d0cd0-4d20-4d68-bfb0-22a11ee09d3a"},{"name":"Estimated property value","id":"59d1150a-6145-4d1d-a189-d124e4edfb71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/property/estimate?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Our Property Value Estimation API gives a rough idea of a property's current worth within a set range of accuracy. It uses a reliable Automated Valuation Model and a special rounding method to ensure fairness and security. This method balances speed and accuracy, providing useful estimates for different property types while aiming to be as unbiased as possible </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: 15 minutes</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>estimate</td><td>integer</td><td>Estimated value</td><td></td>\n        <td></td></tr>\n<tr><td>subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","estimate"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"778b07d4-1102-4373-bdf2-4f3e258d51fc","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/estimate?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","estimate"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"estimate\": 1761,\n  \"subject_address\": {\n    \"address_full\": \"123 Main St San Francisco CA 94132\",\n    \"address_id\": 6825,\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"block_id\": \"060750313013007\",\n    \"city\": \"San Francisco\",\n    \"fips\": \"06075\",\n    \"geo_precision\": \"rooftop\",\n    \"latitude\": 37.789,\n    \"longitude\": -122.401,\n    \"state\": \"CA\",\n    \"unit\": \"Apt 1\",\n    \"address\": \"123 Main St\",\n    \"zipcode\": \"94132\",\n    \"zipcode_plus4\": \"1234\",\n    \"msa\": \"41860\"\n  }\n}"},{"id":"cd29e4db-63a1-4485-99b8-569bb0b3443f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/estimate?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","estimate"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"8fe34b15-e710-459d-9e06-ae6954900818","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/estimate?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","estimate"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"93d8b88c-f26a-48d4-9191-756e89f8179b","name":"Address not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/estimate?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","estimate"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"a5291e48-0c89-44d1-bda9-9c3b5b4bfd54","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/estimate?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","estimate"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"59d1150a-6145-4d1d-a189-d124e4edfb71"},{"name":"Estimated property value (Batch) ","id":"1cd5df71-0f0e-4f24-9427-afe6072f8b46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/estimate","description":"<p>Our Property Value Estimation API gives a rough idea of a property's current worth within a set range of accuracy. It uses a reliable Automated Valuation Model and a special rounding method to ensure fairness and security. This method balances speed and accuracy, providing useful estimates for different property types while aiming to be as unbiased as possible </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Refer to Pricing Page </p>\n<p>Updated: 15 minutes</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].estimate</td><td>integer</td><td>Estimated value</td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>[].subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>[].subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>[].subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>[].subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>[].subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>[].subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>[].subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>[].subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>[].errors</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].errors[]</td><td>string</td><td></td><td></td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","estimate"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"3407ac5b-2b2a-4dc5-a741-12b8886243a4","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/estimate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"estimate\": 4712,\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 7386,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"errors\": [\n      null,\n      null\n    ]\n  },\n  {\n    \"estimate\": 2834,\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 7760,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"errors\": [\n      null,\n      null\n    ]\n  }\n]"},{"id":"5e4d3049-0d1a-422b-b1aa-9ece524d5725","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/estimate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"eb2fc76a-9428-48bb-9745-39d59836a8c8","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/estimate"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b06d2b25-e9cd-436c-9eb9-ecac814ec5b6","name":"Address not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/estimate"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"17a7a73a-ffeb-4bd0-9cd7-97569deea15c","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/estimate"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1cd5df71-0f0e-4f24-9427-afe6072f8b46"},{"name":"Disaster Area Details","id":"f5e55b2e-db52-4481-b296-a7596d52cb56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/fema_disaster_area?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2019-01-01&end=2019-01-01","description":"<p>Acquire details on open FEMA disaster declarations for a property's county, informing risk assessments and insurance needs. </p>\n<p>Source: FEMA </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum number of items to return</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on declared_date, in ISO 8601 format</td><td>2019-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on declared_date, in ISO 8601 format</td><td>2019-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>data_current_to</td><td>string</td><td>The most recent date that data was retrieved from the FEMA API (in ISO format)</td><td>2023-08-10</td>\n        </tr>\n<tr><td>in_disaster_area</td><td>boolean</td><td>Indicates if there is at least one open disaster for the county where the property is located</td><td>true</td>\n        </tr>\n<tr><td>details</td><td>array</td><td>List of open disasters in the area</td><td></td>\n        </tr>\n<tr><td>details[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>details[].declared_date</td><td>string</td><td>The date the disaster was declared</td><td>2023-07-15</td>\n        </tr>\n<tr><td>details[].end_date</td><td>string</td><td>The date the incident itself ended</td><td>2023-08-05T12:00:00Z</td>\n        </tr>\n<tr><td>details[].fema_disaster_num</td><td>integer</td><td>Number assigned to designate an event or incident declared as a disaster</td><td>12345</td>\n        </tr>\n<tr><td>details[].fips</td><td>string</td><td>5-digit FIPS county code</td><td>12345</td>\n        </tr>\n<tr><td>details[].start_date</td><td>string</td><td>The date the incident itself began</td><td>2023-06-30T08:00:00Z</td>\n        </tr>\n<tr><td>details[].title</td><td>string</td><td>The proper name or description of the disaster, as provided by FEMA. i.e. HURRICANE MARIA, FLOODING, SEVERE STORMS</td><td>Severe Storm and Flood</td>\n        </tr>\n<tr><td>details[].type</td><td>string</td><td>The specific category for the disaster  i.e. Coastal Storm, Drought, Flood, Snow, Hurricane, Wildfire</td><td>Flood</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","fema_disaster_area"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum number of items to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on declared_date, in ISO 8601 format</p>\n","type":"text/plain"},"key":"start","value":"2019-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on declared_date, in ISO 8601 format</p>\n","type":"text/plain"},"key":"end","value":"2019-01-01"}],"variable":[]}},"response":[{"id":"dc72ee0c-afcc-4e12-ae97-f0ef01c5ce9b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/fema_disaster_area?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2019-01-01&end=2019-01-01","host":["https://api.housecanary.com"],"path":["v2","property","fema_disaster_area"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on declared_date, in ISO 8601 format","key":"start","value":"2019-01-01"},{"description":"Ending date limit for result items, based on declared_date, in ISO 8601 format","key":"end","value":"2019-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/fema_disaster_area\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"data_current_to\": \"2023-08-10\",\n        \"in_disaster_area\": true,\n        \"details\": [\n          {\n            \"declared_date\": \"2023-07-15\",\n            \"end_date\": \"2023-08-05T12:00:00Z\",\n            \"fema_disaster_num\": 12345,\n            \"fips\": \"12345\",\n            \"start_date\": \"2023-06-30T08:00:00Z\",\n            \"title\": \"Severe Storm and Flood\",\n            \"type\": \"Flood\"\n          },\n          {\n            \"declared_date\": \"2023-07-15\",\n            \"end_date\": \"2023-08-05T12:00:00Z\",\n            \"fema_disaster_num\": 12345,\n            \"fips\": \"12345\",\n            \"start_date\": \"2023-06-30T08:00:00Z\",\n            \"title\": \"Severe Storm and Flood\",\n            \"type\": \"Flood\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/fema_disaster_area\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"data_current_to\": \"2023-08-10\",\n        \"in_disaster_area\": true,\n        \"details\": [\n          {\n            \"declared_date\": \"2023-07-15\",\n            \"end_date\": \"2023-08-05T12:00:00Z\",\n            \"fema_disaster_num\": 12345,\n            \"fips\": \"12345\",\n            \"start_date\": \"2023-06-30T08:00:00Z\",\n            \"title\": \"Severe Storm and Flood\",\n            \"type\": \"Flood\"\n          },\n          {\n            \"declared_date\": \"2023-07-15\",\n            \"end_date\": \"2023-08-05T12:00:00Z\",\n            \"fema_disaster_num\": 12345,\n            \"fips\": \"12345\",\n            \"start_date\": \"2023-06-30T08:00:00Z\",\n            \"title\": \"Severe Storm and Flood\",\n            \"type\": \"Flood\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"1d11ce19-443f-43d1-9037-22d51effec35","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/fema_disaster_area?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2019-01-01&end=2019-01-01","host":["https://api.housecanary.com"],"path":["v2","property","fema_disaster_area"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on declared_date, in ISO 8601 format","key":"start","value":"2019-01-01"},{"description":"Ending date limit for result items, based on declared_date, in ISO 8601 format","key":"end","value":"2019-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"80e70ea3-155b-4701-a04b-9c33a559f2ac","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/fema_disaster_area?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2019-01-01&end=2019-01-01","host":["https://api.housecanary.com"],"path":["v2","property","fema_disaster_area"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on declared_date, in ISO 8601 format","key":"start","value":"2019-01-01"},{"description":"Ending date limit for result items, based on declared_date, in ISO 8601 format","key":"end","value":"2019-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"240795ec-fc20-43f2-aa5e-4eb365dd422f","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/fema_disaster_area?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2019-01-01&end=2019-01-01","host":["https://api.housecanary.com"],"path":["v2","property","fema_disaster_area"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on declared_date, in ISO 8601 format","key":"start","value":"2019-01-01"},{"description":"Ending date limit for result items, based on declared_date, in ISO 8601 format","key":"end","value":"2019-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f5e55b2e-db52-4481-b296-a7596d52cb56"},{"name":"Disaster Area Details (Batch)","id":"1be266d0-3172-4712-9f47-4f814cad11b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/fema_disaster_area?order=asc&limit=10&start=2019-01-01&end=2019-01-01","description":"<p>Acquire details on open FEMA disaster declarations for a property's county, informing risk assessments and insurance needs. </p>\n<p>Source: FEMA </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum number of items to return</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on declared_date, in ISO 8601 format</td><td>2019-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on declared_date, in ISO 8601 format</td><td>2019-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>data_current_to</td><td>string</td><td>The most recent date that data was retrieved from the FEMA API (in ISO format)</td><td>2023-08-10</td>\n        </tr>\n<tr><td>in_disaster_area</td><td>boolean</td><td>Indicates if there is at least one open disaster for the county where the property is located</td><td>true</td>\n        </tr>\n<tr><td>details</td><td>array</td><td>List of open disasters in the area</td><td></td>\n        </tr>\n<tr><td>details[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>details[].declared_date</td><td>string</td><td>The date the disaster was declared</td><td>2023-07-15</td>\n        </tr>\n<tr><td>details[].end_date</td><td>string</td><td>The date the incident itself ended</td><td>2023-08-05T12:00:00Z</td>\n        </tr>\n<tr><td>details[].fema_disaster_num</td><td>integer</td><td>Number assigned to designate an event or incident declared as a disaster</td><td>12345</td>\n        </tr>\n<tr><td>details[].fips</td><td>string</td><td>5-digit FIPS county code</td><td>12345</td>\n        </tr>\n<tr><td>details[].start_date</td><td>string</td><td>The date the incident itself began</td><td>2023-06-30T08:00:00Z</td>\n        </tr>\n<tr><td>details[].title</td><td>string</td><td>The proper name or description of the disaster, as provided by FEMA. i.e. HURRICANE MARIA, FLOODING, SEVERE STORMS</td><td>Severe Storm and Flood</td>\n        </tr>\n<tr><td>details[].type</td><td>string</td><td>The specific category for the disaster  i.e. Coastal Storm, Drought, Flood, Snow, Hurricane, Wildfire</td><td>Flood</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","fema_disaster_area"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum number of items to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on declared_date, in ISO 8601 format</p>\n","type":"text/plain"},"key":"start","value":"2019-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on declared_date, in ISO 8601 format</p>\n","type":"text/plain"},"key":"end","value":"2019-01-01"}],"variable":[]}},"response":[{"id":"67f364be-183e-44d4-bde7-b12623a3ee52","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/fema_disaster_area?order=asc&limit=10&start=2019-01-01&end=2019-01-01","host":["https://api.housecanary.com"],"path":["v2","property","fema_disaster_area"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on declared_date, in ISO 8601 format","key":"start","value":"2019-01-01"},{"description":"Ending date limit for result items, based on declared_date, in ISO 8601 format","key":"end","value":"2019-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/fema_disaster_area\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"data_current_to\": \"2023-08-10\",\n        \"in_disaster_area\": true,\n        \"details\": [\n          {\n            \"declared_date\": \"2023-07-15\",\n            \"end_date\": \"2023-08-05T12:00:00Z\",\n            \"fema_disaster_num\": 12345,\n            \"fips\": \"12345\",\n            \"start_date\": \"2023-06-30T08:00:00Z\",\n            \"title\": \"Severe Storm and Flood\",\n            \"type\": \"Flood\"\n          },\n          {\n            \"declared_date\": \"2023-07-15\",\n            \"end_date\": \"2023-08-05T12:00:00Z\",\n            \"fema_disaster_num\": 12345,\n            \"fips\": \"12345\",\n            \"start_date\": \"2023-06-30T08:00:00Z\",\n            \"title\": \"Severe Storm and Flood\",\n            \"type\": \"Flood\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/fema_disaster_area\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"data_current_to\": \"2023-08-10\",\n        \"in_disaster_area\": true,\n        \"details\": [\n          {\n            \"declared_date\": \"2023-07-15\",\n            \"end_date\": \"2023-08-05T12:00:00Z\",\n            \"fema_disaster_num\": 12345,\n            \"fips\": \"12345\",\n            \"start_date\": \"2023-06-30T08:00:00Z\",\n            \"title\": \"Severe Storm and Flood\",\n            \"type\": \"Flood\"\n          },\n          {\n            \"declared_date\": \"2023-07-15\",\n            \"end_date\": \"2023-08-05T12:00:00Z\",\n            \"fema_disaster_num\": 12345,\n            \"fips\": \"12345\",\n            \"start_date\": \"2023-06-30T08:00:00Z\",\n            \"title\": \"Severe Storm and Flood\",\n            \"type\": \"Flood\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"4c75b3fb-cc5e-4024-960a-6abf0ec4fa7a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/fema_disaster_area?order=asc&limit=10&start=2019-01-01&end=2019-01-01","host":["https://api.housecanary.com"],"path":["v2","property","fema_disaster_area"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on declared_date, in ISO 8601 format","key":"start","value":"2019-01-01"},{"description":"Ending date limit for result items, based on declared_date, in ISO 8601 format","key":"end","value":"2019-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"fc17b2bd-f7de-473d-a1d8-af8c47247dc5","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/fema_disaster_area?order=asc&limit=10&start=2019-01-01&end=2019-01-01","host":["https://api.housecanary.com"],"path":["v2","property","fema_disaster_area"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on declared_date, in ISO 8601 format","key":"start","value":"2019-01-01"},{"description":"Ending date limit for result items, based on declared_date, in ISO 8601 format","key":"end","value":"2019-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"639fd200-4007-4c54-b377-1435a440d10e","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/fema_disaster_area?order=asc&limit=10&start=2019-01-01&end=2019-01-01","host":["https://api.housecanary.com"],"path":["v2","property","fema_disaster_area"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on declared_date, in ISO 8601 format","key":"start","value":"2019-01-01"},{"description":"Ending date limit for result items, based on declared_date, in ISO 8601 format","key":"end","value":"2019-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1be266d0-3172-4712-9f47-4f814cad11b6"},{"name":"Flood Risk Information","id":"e97923b4-854a-471c-935c-5cf3c5eee1a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/flood?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Retrieve FEMA flood risk data for properties, essential for evaluating potential hazards and insurance requirements. </p>\n<p>Source: FEMA </p>\n<p>Pricing Tier: Basic </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>effective_date</td><td>string</td><td>Date the flood risk assessment took effect (in ISO format)</td><td>2023-08-10</td>\n        </tr>\n<tr><td>flood_risk</td><td>string</td><td>Level of flood risk</td><td>Moderate</td>\n        </tr>\n<tr><td>zone</td><td>string</td><td>Flood zone the property is in. Zone descriptions</td><td>AE</td>\n        </tr>\n<tr><td>panel_number</td><td>string</td><td>Flood map panel number that includes the property</td><td>12345C0123E</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","flood"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"def36add-75fc-4763-967d-2114f0ac7878","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/flood?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","flood"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/flood\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"effective_date\": \"2023-08-10\",\n        \"flood_risk\": \"Moderate\",\n        \"zone\": \"AE\",\n        \"panel_number\": \"12345C0123E\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/flood\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"effective_date\": \"2023-08-10\",\n        \"flood_risk\": \"Moderate\",\n        \"zone\": \"AE\",\n        \"panel_number\": \"12345C0123E\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9090cd18-473f-41e2-b6c0-ae1fce45d934","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/flood?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","flood"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"376dfb3e-f668-492d-b873-c7d91dd2ac83","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/flood?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","flood"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b6e68ee4-854d-47ec-8ffa-6dda4abb41b3","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/flood?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","flood"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e97923b4-854a-471c-935c-5cf3c5eee1a0"},{"name":"Flood Risk Information (Batch)","id":"7630d966-99fd-4bf2-8a23-2ea77380972b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/flood","description":"<p>Retrieve FEMA flood risk data for properties, essential for evaluating potential hazards and insurance requirements. </p>\n<p>Source: FEMA </p>\n<p>Pricing Tier: Basic </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>effective_date</td><td>string</td><td>Date the flood risk assessment took effect (in ISO format)</td><td>2023-08-10</td>\n        </tr>\n<tr><td>flood_risk</td><td>string</td><td>Level of flood risk</td><td>Moderate</td>\n        </tr>\n<tr><td>zone</td><td>string</td><td>Flood zone the property is in. Zone descriptions</td><td>AE</td>\n        </tr>\n<tr><td>panel_number</td><td>string</td><td>Flood map panel number that includes the property</td><td>12345C0123E</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","flood"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"03b8a65e-0256-4768-a1c7-13b3d47266b7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/flood"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/flood\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"effective_date\": \"2023-08-10\",\n        \"flood_risk\": \"Moderate\",\n        \"zone\": \"AE\",\n        \"panel_number\": \"12345C0123E\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/flood\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"effective_date\": \"2023-08-10\",\n        \"flood_risk\": \"Moderate\",\n        \"zone\": \"AE\",\n        \"panel_number\": \"12345C0123E\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"e3c92a2e-e461-42c7-81ac-114ef7750d9e","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/flood"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0824e1a5-0f9f-4337-9b2f-29ba58d8aa2a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/flood"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"068b8138-360e-4ed4-ba1c-45173262b4ff","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/flood"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7630d966-99fd-4bf2-8a23-2ea77380972b"},{"name":"Geocoder","id":"cd6e3dd5-0aac-4719-9916-262ed65d0854","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/geocode?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Obtain a full geocoder response for property addresses, including resolution status and encountered issues.  Responses also include the resolved canonical address as recorded in HouseCanary's systems. </p>\n<p>Source: USPS Cass Certified System </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Quarterly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td></td><td>boolean</td><td></td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","geocode"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"088dfa43-a3d9-4e68-bbd3-0e75c25df604","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/geocode?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","geocode"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/geocode\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": false\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/geocode\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": true\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"abf5f8fe-fe26-4cdf-a5ce-8adf6afbd574","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/geocode?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","geocode"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"60198c1a-aa36-4389-badf-7fad1088433c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/geocode?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","geocode"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a9d7ca40-f732-441a-b38d-6cc90892ac09","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/geocode?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","geocode"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"cd6e3dd5-0aac-4719-9916-262ed65d0854"},{"name":"Geocoder (Batch)","id":"9bfbfbae-dd26-48a8-b584-a8d21ed30428","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geocode","description":"<p>Obtain a full geocoder response for property addresses, including resolution status and encountered issues.  Responses also include the resolved canonical address as recorded in HouseCanary's systems. </p>\n<p>Source: USPS Cass Certified System </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Quarterly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td></td><td>boolean</td><td></td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","geocode"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"ed95f057-13fc-4e37-954a-d90e312110d7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geocode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/geocode\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": false\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/geocode\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": true\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"1bb1ca47-3bf4-4c48-8199-663dc343131e","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geocode"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"b7912b4f-97e4-48a1-8a24-94d64593c2c9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geocode"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2584a8f5-2368-4df9-8b9a-8b593537c462","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geocode"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9bfbfbae-dd26-48a8-b584-a8d21ed30428"},{"name":"Geographic attributes of property","id":"b970559f-afb8-4c1d-9666-1aa1637e4284","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/geo_features?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>This endpoint provides geographic attributes of the property, including backyard exposure angle, backyard slope, backyard view angle, elevation, frontage length, orientation, privacy score by blockgroup and county, and view angle.  </p>\n<p>Pricing Tier: Basic </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>backyard_exposure_angle</td><td>integer</td><td>Measurement of how easily neighbors can see into the property and backyard, thus potentially mitigating privacy. Value is the angle (in degrees) exposed to backyard neighbors. Values range from 0 to 180.</td><td>120</td>\n        </tr>\n<tr><td>backyard_slope</td><td>integer</td><td>The slope (in degrees) along the centerline of the backyard view angle. Values range from -90 to 90. Negative values indicate downhill views, 0 is horizontal, and positive values indicate uphill views.</td><td>-10</td>\n        </tr>\n<tr><td>backyard_view_angle</td><td>integer</td><td>Measurement of maximum angle (in degrees) that opens up to scenery or nature from the backyard. Values range from 0 to 180.</td><td>150</td>\n        </tr>\n<tr><td>elevation</td><td>integer</td><td>The height (in meters) of a property in relation to sea level.</td><td>200</td>\n        </tr>\n<tr><td>frontage_length</td><td>integer</td><td>The length (in feet) of the parcel frontage.</td><td>75</td>\n        </tr>\n<tr><td>orientation</td><td>integer</td><td>Direction (in degrees) that the front of the house faces.</td><td>180</td>\n        </tr>\n<tr><td>privacy_score_blockgroup</td><td>integer</td><td>HouseCanary proprietary summary of the geographic attributes of a parcel relative to other parcels in the census blockgroup. Values range from 0 to 100. Higher values indicate greater privacy.</td><td>85</td>\n        </tr>\n<tr><td>privacy_score_county</td><td>integer</td><td>HouseCanary proprietary summary of the geographic attributes of a parcel relative to other parcels in the county. Values range from 0 to 100. Higher values indicate greater privacy.</td><td>75</td>\n        </tr>\n<tr><td>view_angle</td><td>integer</td><td>Maximum angle (in degrees) that one can view the surrounding area by standing at the center of a parcel. Values range from 0 to 360.</td><td>270</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","geo_features"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"2754e6fc-f5e1-4512-983d-5b671d8d551a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/geo_features?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","geo_features"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/geo_features\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"backyard_exposure_angle\": 120,\n        \"backyard_slope\": -10,\n        \"backyard_view_angle\": 150,\n        \"elevation\": 200,\n        \"frontage_length\": 75,\n        \"orientation\": 180,\n        \"privacy_score_blockgroup\": 85,\n        \"privacy_score_county\": 75,\n        \"view_angle\": 270\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/geo_features\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"backyard_exposure_angle\": 120,\n        \"backyard_slope\": -10,\n        \"backyard_view_angle\": 150,\n        \"elevation\": 200,\n        \"frontage_length\": 75,\n        \"orientation\": 180,\n        \"privacy_score_blockgroup\": 85,\n        \"privacy_score_county\": 75,\n        \"view_angle\": 270\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"d79c40cb-1118-47a1-ae86-be647cd45a62","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/geo_features?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","geo_features"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"412979a2-c04e-40ca-a02e-66be66fc2a44","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/geo_features?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","geo_features"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"bc03ddd5-166f-451d-a24c-b446b93aa091","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/geo_features?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","geo_features"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b970559f-afb8-4c1d-9666-1aa1637e4284"},{"name":"Geographic attributes of property (Batch)","id":"f62255af-f5f4-437b-b3ba-742603ffd8a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geo_features","description":"<p>This endpoint provides geographic attributes of the property, including backyard exposure angle, backyard slope, backyard view angle, elevation, frontage length, orientation, privacy score by blockgroup and county, and view angle.  </p>\n<p>Pricing Tier: Basic </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>backyard_exposure_angle</td><td>integer</td><td>Measurement of how easily neighbors can see into the property and backyard, thus potentially mitigating privacy. Value is the angle (in degrees) exposed to backyard neighbors. Values range from 0 to 180.</td><td>120</td>\n        </tr>\n<tr><td>backyard_slope</td><td>integer</td><td>The slope (in degrees) along the centerline of the backyard view angle. Values range from -90 to 90. Negative values indicate downhill views, 0 is horizontal, and positive values indicate uphill views.</td><td>-10</td>\n        </tr>\n<tr><td>backyard_view_angle</td><td>integer</td><td>Measurement of maximum angle (in degrees) that opens up to scenery or nature from the backyard. Values range from 0 to 180.</td><td>150</td>\n        </tr>\n<tr><td>elevation</td><td>integer</td><td>The height (in meters) of a property in relation to sea level.</td><td>200</td>\n        </tr>\n<tr><td>frontage_length</td><td>integer</td><td>The length (in feet) of the parcel frontage.</td><td>75</td>\n        </tr>\n<tr><td>orientation</td><td>integer</td><td>Direction (in degrees) that the front of the house faces.</td><td>180</td>\n        </tr>\n<tr><td>privacy_score_blockgroup</td><td>integer</td><td>HouseCanary proprietary summary of the geographic attributes of a parcel relative to other parcels in the census blockgroup. Values range from 0 to 100. Higher values indicate greater privacy.</td><td>85</td>\n        </tr>\n<tr><td>privacy_score_county</td><td>integer</td><td>HouseCanary proprietary summary of the geographic attributes of a parcel relative to other parcels in the county. Values range from 0 to 100. Higher values indicate greater privacy.</td><td>75</td>\n        </tr>\n<tr><td>view_angle</td><td>integer</td><td>Maximum angle (in degrees) that one can view the surrounding area by standing at the center of a parcel. Values range from 0 to 360.</td><td>270</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","geo_features"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"efd7110d-8190-4dd0-be62-dc65812993ac","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geo_features"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/geo_features\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"backyard_exposure_angle\": 120,\n        \"backyard_slope\": -10,\n        \"backyard_view_angle\": 150,\n        \"elevation\": 200,\n        \"frontage_length\": 75,\n        \"orientation\": 180,\n        \"privacy_score_blockgroup\": 85,\n        \"privacy_score_county\": 75,\n        \"view_angle\": 270\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/geo_features\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"backyard_exposure_angle\": 120,\n        \"backyard_slope\": -10,\n        \"backyard_view_angle\": 150,\n        \"elevation\": 200,\n        \"frontage_length\": 75,\n        \"orientation\": 180,\n        \"privacy_score_blockgroup\": 85,\n        \"privacy_score_county\": 75,\n        \"view_angle\": 270\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"172c5618-c929-4db4-9cde-97b8b9e18284","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geo_features"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d28d279f-309d-4a3c-a9ad-0f575d032562","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geo_features"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"8deb6b6d-ff3c-4353-9c39-0978a628d132","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/geo_features"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f62255af-f5f4-437b-b3ba-742603ffd8a6"},{"name":"HOA Fees","id":"7ac92acf-0059-44e1-ac56-c09bcb8a3d5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/property/hoa_est?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Estimate annual HOA fees for properties using HouseCanary's proprietary algorithms, important for budgeting and investment calculations. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>association_estimated</td><td>object</td><td>Object containing estimated HOA data for the subject property</td><td></td>\n        <td></td></tr>\n<tr><td>association_estimated.annual_hoa_est</td><td>integer</td><td>Quantitatively derived value of the property's estimated annual hoa fees</td><td>1200</td>\n        <td></td></tr>\n<tr><td>association_estimated.max_fee</td><td>integer</td><td>Quantitatively derived value of the property's estimated maximum hoa fees</td><td>1500</td>\n        <td></td></tr>\n<tr><td>association_estimated.min_fee</td><td>integer</td><td>Quantitatively derived value of the property's estimated minimum hoa fees</td><td>1000</td>\n        <td></td></tr>\n<tr><td>association_estimated.n_samples</td><td>integer</td><td>Number of reference properties used by our proprietary algorithm to determine estimated hoa fees</td><td>50</td>\n        <td></td></tr>\n<tr><td>association_estimated.subdivision</td><td>string</td><td>Subdivision name</td><td>Oakridge Estates</td>\n        <td></td></tr>\n<tr><td>association_estimated.subdivision_id</td><td>string</td><td>Corresponding subdivision ID</td><td>12345</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","hoa_est"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"1278da91-ad63-4e0f-bdc6-c21532656863","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/hoa_est?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","hoa_est"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"subject_address\": {\n    \"address_full\": \"123 Main St San Francisco CA 94132\",\n    \"address_id\": 125,\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"block_id\": \"060750313013007\",\n    \"city\": \"San Francisco\",\n    \"fips\": \"06075\",\n    \"geo_precision\": \"rooftop\",\n    \"latitude\": 37.789,\n    \"longitude\": -122.401,\n    \"state\": \"CA\",\n    \"unit\": \"Apt 1\",\n    \"address\": \"123 Main St\",\n    \"zipcode\": \"94132\",\n    \"zipcode_plus4\": \"1234\",\n    \"msa\": \"41860\"\n  },\n  \"association_estimated\": {\n    \"annual_hoa_est\": 1200,\n    \"max_fee\": 1500,\n    \"min_fee\": 1000,\n    \"n_samples\": 50,\n    \"subdivision\": \"Oakridge Estates\",\n    \"subdivision_id\": \"12345\"\n  }\n}"},{"id":"bf093d11-09b0-4b43-90a4-cc93c15a2d57","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/hoa_est?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","hoa_est"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d3a11225-5304-4917-a12f-253f441838cd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/hoa_est?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","hoa_est"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"acae602d-df96-4401-b6e4-a2a9ccac3ce5","name":"Address not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/hoa_est?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","hoa_est"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"53b638f6-b902-401d-984f-43a53f4deaba","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/hoa_est?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v3","property","hoa_est"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7ac92acf-0059-44e1-ac56-c09bcb8a3d5c"},{"name":"HOA Fees (Batch) ","id":"9735b419-11fd-4337-9fbe-5772e6bf359a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/hoa_est","description":"<p>Estimate annual HOA fees for properties using HouseCanary's proprietary algorithms, important for budgeting and investment calculations. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>[].subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>[].subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>[].subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>[].subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>[].subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>[].subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>[].subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>[].subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>[].association_estimated</td><td>object</td><td>Object containing estimated HOA data for the subject property</td><td></td>\n        <td></td></tr>\n<tr><td>[].association_estimated.annual_hoa_est</td><td>integer</td><td>Quantitatively derived value of the property's estimated annual hoa fees</td><td>1200</td>\n        <td></td></tr>\n<tr><td>[].association_estimated.max_fee</td><td>integer</td><td>Quantitatively derived value of the property's estimated maximum hoa fees</td><td>1500</td>\n        <td></td></tr>\n<tr><td>[].association_estimated.min_fee</td><td>integer</td><td>Quantitatively derived value of the property's estimated minimum hoa fees</td><td>1000</td>\n        <td></td></tr>\n<tr><td>[].association_estimated.n_samples</td><td>integer</td><td>Number of reference properties used by our proprietary algorithm to determine estimated hoa fees</td><td>50</td>\n        <td></td></tr>\n<tr><td>[].association_estimated.subdivision</td><td>string</td><td>Subdivision name</td><td>Oakridge Estates</td>\n        <td></td></tr>\n<tr><td>[].association_estimated.subdivision_id</td><td>string</td><td>Corresponding subdivision ID</td><td>12345</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","hoa_est"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"4b0d64cf-a952-4fad-9e98-378b071e9f30","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/hoa_est"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 215,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"association_estimated\": {\n      \"annual_hoa_est\": 1200,\n      \"max_fee\": 1500,\n      \"min_fee\": 1000,\n      \"n_samples\": 50,\n      \"subdivision\": \"Oakridge Estates\",\n      \"subdivision_id\": \"12345\"\n    }\n  },\n  {\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 5639,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"association_estimated\": {\n      \"annual_hoa_est\": 1200,\n      \"max_fee\": 1500,\n      \"min_fee\": 1000,\n      \"n_samples\": 50,\n      \"subdivision\": \"Oakridge Estates\",\n      \"subdivision_id\": \"12345\"\n    }\n  }\n]"},{"id":"4d476123-e69c-49a4-a668-272216dc1c2a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/hoa_est"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"83d7843c-2b82-47f4-9840-f30cd6eebc9f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/hoa_est"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b83f53fa-e091-4da5-8e1c-2b858f675a09","name":"Address not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/hoa_est"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"28c84070-bb84-4915-ac5a-0e36562bfaef","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/hoa_est"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9735b419-11fd-4337-9fbe-5772e6bf359a"},{"name":"Historical Value","id":"56fdaeb7-4d12-489c-9c43-3d0d46460470","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/property/historical_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&date=\"2021-06-01\" or \"2022-03-01T12:34:56Z\"","description":"<p>HouseCanary's flagship historical automated property value estimate.</p>\n<p>HouseCanary's proprietary Automated Valuation Model (AVM) utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market value of a residential property. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n<tr><td>date</td><td>string</td><td>Date (YYYY-MM-DD) or UTC timestamp of historical value</td><td>\"2021-06-01\" or \"2022-03-01T12:34:56Z\"</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>historical_value</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>historical_value.price_mean</td><td>integer</td><td>HouseCanary automated monthly home value. Created using a robust model ensemble methodology.</td><td>325000</td>\n        <td></td></tr>\n<tr><td>historical_value.price_upr</td><td>integer</td><td>HouseCanary AVM upper bound. Calculated as price_mean * (1 + fsd)</td><td>340000</td>\n        <td></td></tr>\n<tr><td>historical_value.price_lwr</td><td>integer</td><td>HouseCanary AVM lower bound. Calculated as price_mean * (1 - fsd)</td><td>310000</td>\n        <td></td></tr>\n<tr><td>historical_value.fsd</td><td>integer</td><td>HouseCanary forecast standard deviation for the HouseCanary AVM</td><td>0.05</td>\n        <td></td></tr>\n<tr><td>historical_value.date</td><td>string</td><td>Date (YYYY-MM-DD) or UTC timestamp of historical value</td><td>2021-06-01</td>\n        <td></td></tr>\n<tr><td>subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>errors</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>errors[]</td><td>string</td><td></td><td></td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","historical_value"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Date (YYYY-MM-DD) or UTC timestamp of historical value</p>\n","type":"text/plain"},"key":"date","value":"\"2021-06-01\" or \"2022-03-01T12:34:56Z\""}],"variable":[]}},"response":[{"id":"763d46e5-bb7f-431e-8f73-c7df09885996","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/historical_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&date=\"2021-06-01\" or \"2022-03-01T12:34:56Z\"","host":["https://api.housecanary.com"],"path":["v3","property","historical_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Date (YYYY-MM-DD) or UTC timestamp of historical value","key":"date","value":"\"2021-06-01\" or \"2022-03-01T12:34:56Z\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"historical_value\": {\n    \"price_mean\": 325000,\n    \"price_upr\": 340000,\n    \"price_lwr\": 310000,\n    \"fsd\": 9614,\n    \"date\": \"2021-06-01\"\n  },\n  \"subject_address\": {\n    \"address_full\": \"123 Main St San Francisco CA 94132\",\n    \"address_id\": 5218,\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"block_id\": \"060750313013007\",\n    \"city\": \"San Francisco\",\n    \"fips\": \"06075\",\n    \"geo_precision\": \"rooftop\",\n    \"latitude\": 37.789,\n    \"longitude\": -122.401,\n    \"state\": \"CA\",\n    \"unit\": \"Apt 1\",\n    \"address\": \"123 Main St\",\n    \"zipcode\": \"94132\",\n    \"zipcode_plus4\": \"1234\",\n    \"msa\": \"41860\"\n  },\n  \"errors\": [\n    null,\n    null\n  ]\n}"},{"id":"08000fe7-3c49-4a07-a8d1-850cb7fa8668","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/historical_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&date=\"2021-06-01\" or \"2022-03-01T12:34:56Z\"","host":["https://api.housecanary.com"],"path":["v3","property","historical_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Date (YYYY-MM-DD) or UTC timestamp of historical value","key":"date","value":"\"2021-06-01\" or \"2022-03-01T12:34:56Z\""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e194337c-3f38-4fc3-adf5-f681011abeb0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/historical_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&date=\"2021-06-01\" or \"2022-03-01T12:34:56Z\"","host":["https://api.housecanary.com"],"path":["v3","property","historical_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Date (YYYY-MM-DD) or UTC timestamp of historical value","key":"date","value":"\"2021-06-01\" or \"2022-03-01T12:34:56Z\""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"82b1b5fc-3930-420b-84ee-2b6547404710","name":"Address not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/historical_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&date=\"2021-06-01\" or \"2022-03-01T12:34:56Z\"","host":["https://api.housecanary.com"],"path":["v3","property","historical_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Date (YYYY-MM-DD) or UTC timestamp of historical value","key":"date","value":"\"2021-06-01\" or \"2022-03-01T12:34:56Z\""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"50f6919a-3362-42a6-bce9-aaeeb337587e","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/historical_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&date=\"2021-06-01\" or \"2022-03-01T12:34:56Z\"","host":["https://api.housecanary.com"],"path":["v3","property","historical_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Date (YYYY-MM-DD) or UTC timestamp of historical value","key":"date","value":"\"2021-06-01\" or \"2022-03-01T12:34:56Z\""}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"56fdaeb7-4d12-489c-9c43-3d0d46460470"},{"name":"Historical Value (Batch) ","id":"341d7e3d-aedc-44aa-a7b1-814b5e5f48f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  },\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/historical_value","description":"<p>HouseCanary's flagship historical automated property value estimate.</p>\n<p>HouseCanary's proprietary Automated Valuation Model (AVM) utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market value of a residential property. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].subject</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].subject.slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].subject.address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].subject.unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].subject.city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].subject.state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].subject.zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n<tr><td>[].date</td><td>string</td><td>Date (YYYY-MM-DD) or UTC timestamp of historical value</td><td>\"2021-06-01\" or \"2022-03-01T12:34:56Z\"</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td>Object containing estimated historical AVM data for the subject property</td><td></td>\n        <td></td></tr>\n<tr><td>[].historical_value</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].historical_value.price_mean</td><td>integer</td><td>HouseCanary automated monthly home value. Created using a robust model ensemble methodology.</td><td>325000</td>\n        <td></td></tr>\n<tr><td>[].historical_value.price_upr</td><td>integer</td><td>HouseCanary AVM upper bound. Calculated as price_mean * (1 + fsd)</td><td>340000</td>\n        <td></td></tr>\n<tr><td>[].historical_value.price_lwr</td><td>integer</td><td>HouseCanary AVM lower bound. Calculated as price_mean * (1 - fsd)</td><td>310000</td>\n        <td></td></tr>\n<tr><td>[].historical_value.fsd</td><td>integer</td><td>HouseCanary forecast standard deviation for the HouseCanary AVM</td><td>0.05</td>\n        <td></td></tr>\n<tr><td>[].historical_value.date</td><td>string</td><td>Date (YYYY-MM-DD) or UTC timestamp of historical value</td><td>\"2021-06-01\"</td>\n        <td></td></tr>\n<tr><td>[].subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>[].subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>[].subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>[].subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>[].subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>[].subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>[].subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>[].subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>[].subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>[].errors</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].errors[]</td><td>string</td><td></td><td></td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","historical_value"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"93a5f9c1-a377-4ffd-89c7-b7c6d08c2202","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  },\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/historical_value"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"historical_value\": {\n      \"price_mean\": 325000,\n      \"price_upr\": 340000,\n      \"price_lwr\": 310000,\n      \"fsd\": 2956,\n      \"date\": \"\\\"2021-06-01\\\"\"\n    },\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 7755,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"errors\": [\n      null,\n      null\n    ]\n  },\n  {\n    \"historical_value\": {\n      \"price_mean\": 325000,\n      \"price_upr\": 340000,\n      \"price_lwr\": 310000,\n      \"fsd\": 1189,\n      \"date\": \"\\\"2021-06-01\\\"\"\n    },\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 2209,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"errors\": [\n      null,\n      null\n    ]\n  }\n]"},{"id":"a3f1efe5-b4a8-4728-8d3c-07cb230e46d7","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  },\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/historical_value"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"bf75dcfa-295c-42dc-9478-eb378221fe9e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  },\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/historical_value"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9baff3a3-2786-43db-b6a4-1587a7d8740f","name":"Address not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  },\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/historical_value"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"568a62e7-2377-4619-8764-fd89caac0bda","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  },\n  {\n    \"subject\": {\n      \"address\": \"123 Main St\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94105\"\n    },\n    \"date\": \"\\\"2021-06-01\\\" or \\\"2022-03-01T12:34:56Z\\\"\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/historical_value"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"341d7e3d-aedc-44aa-a7b1-814b5e5f48f1"},{"name":"Land Value","id":"271ed3a3-365d-4e7c-96b0-b9f198edee01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/land_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>HouseCanary's automated land value estimate, assisting in land pricing and investment analysis.</p>\n<p>HouseCanary's proprietary Automated Land Valuation Model utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market value of the land contained on the parcel. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>value_mean</td><td>integer</td><td>HouseCanary automated monthly land value. Created using a robust model ensemble methodology</td><td>150000</td>\n        </tr>\n<tr><td>value_upr</td><td>integer</td><td>HouseCanary land AVM upper bound. Calculated as value_mean * (1 + fsd)</td><td>165000</td>\n        </tr>\n<tr><td>value_lwr</td><td>integer</td><td>HouseCanary land AVM lower bound. Calculated as value_mean * (1 - fsd)</td><td>135000</td>\n        </tr>\n<tr><td>fsd</td><td>number</td><td>HouseCanary forecast standard deviation for the HouseCanary land AVM</td><td>0.1</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","land_value"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"16ea0794-cc10-4235-9e95-4627becb21bb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/land_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","land_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/land_value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value_mean\": 150000,\n        \"value_upr\": 165000,\n        \"value_lwr\": 135000,\n        \"fsd\": 0.1\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/land_value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value_mean\": 150000,\n        \"value_upr\": 165000,\n        \"value_lwr\": 135000,\n        \"fsd\": 0.1\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"f826ba88-1103-4dc0-8196-0096be936344","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/land_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","land_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ed5f160a-9ad6-4909-bfba-7f3fd26079d8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/land_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","land_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0c1eeae8-8ea4-4f4f-9727-ba043c203078","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/land_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","land_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"271ed3a3-365d-4e7c-96b0-b9f198edee01"},{"name":"Land Value (Batch)","id":"71dab2df-c04b-4b5f-a8af-a0568f603387","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/land_value","description":"<p>HouseCanary's automated land value estimate, assisting in land pricing and investment analysis.</p>\n<p>HouseCanary's proprietary Automated Land Valuation Model utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market value of the land contained on the parcel. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>value_mean</td><td>integer</td><td>HouseCanary automated monthly land value. Created using a robust model ensemble methodology</td><td>150000</td>\n        </tr>\n<tr><td>value_upr</td><td>integer</td><td>HouseCanary land AVM upper bound. Calculated as value_mean * (1 + fsd)</td><td>165000</td>\n        </tr>\n<tr><td>value_lwr</td><td>integer</td><td>HouseCanary land AVM lower bound. Calculated as value_mean * (1 - fsd)</td><td>135000</td>\n        </tr>\n<tr><td>fsd</td><td>number</td><td>HouseCanary forecast standard deviation for the HouseCanary land AVM</td><td>0.1</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","land_value"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"87d5659c-b639-4eef-8018-98f80c81130f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/land_value"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/land_value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value_mean\": 150000,\n        \"value_upr\": 165000,\n        \"value_lwr\": 135000,\n        \"fsd\": 0.1\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/land_value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value_mean\": 150000,\n        \"value_upr\": 165000,\n        \"value_lwr\": 135000,\n        \"fsd\": 0.1\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"253e8a9f-7dd6-4736-9eb6-30c4f0f031e9","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/land_value"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c8060b7a-87d3-4273-9da0-21b39ec1d5bd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/land_value"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a256e4e8-0f61-4130-86ba-b5ddc23860ef","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/land_value"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"71dab2df-c04b-4b5f-a8af-a0568f603387"},{"name":"Estimated LTV Details","id":"c789bf2d-8fe0-45b8-b817-5c8709aa239f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/ltv_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Access comprehensive LTV data for properties, supporting mortgage and refinance decision-making.  Access comprehensive data on the estimated loan-to-value ratio (LTV) for properties. Receive granular information on grantors, grantees, monthly payments, current interest rates, original lien amounts, loan duration, progress made, outstanding principal, principal paid, record and due dates, ARM specifics, and more. Additionally, the endpoint delivers summary data covering equity, monthly payments, lien amounts, notice IDs, and property valuations.</p>\n<p>Active liens' paydown is calculated based on available lien terms, factoring in details such as ARM and interest-only periods when applicable. The response includes a sorted list of notice IDs with corresponding descriptions, which highlight findings during LTV generation and their usual impact on the calculation.  This is particularly useful for helping drive refinancing or loan origination analysis. </p>\n<p>Source: HouseCanary, Public Records, Freddie Mac </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>as_of_month</td><td>string</td><td>Year and month of the processing date for the loan to value calculation</td><td>2023-07</td>\n        <td></td></tr>\n<tr><td>fsd</td><td>number</td><td>Forecast standard deviation for the Housecanary AVM as of the as_of_month</td><td>0.08</td>\n        <td></td></tr>\n<tr><td>in_default</td><td>boolean</td><td>Whether the lien is in default</td><td>true</td>\n        <td></td></tr>\n<tr><td>last_default_date</td><td>string</td><td>Date of last default, if one exists</td><td>2022-12-20</td>\n        <td></td></tr>\n<tr><td>ltv_lwr</td><td>number</td><td>Estimated LTV lower bound. Calculated as total_lien / property_value_upr</td><td>0.8</td>\n        <td></td></tr>\n<tr><td>ltv_mean</td><td>number</td><td>Estimated LTV. Calculated as total_lien / property_value_upr</td><td>0.75</td>\n        <td></td></tr>\n<tr><td>ltv_upr</td><td>number</td><td>Estimated LTV upper bound. Calculated as total_lien / property_value_lwr</td><td>0.78</td>\n        <td></td></tr>\n<tr><td>property_value_lwr</td><td>integer</td><td>HouseCanary lower bound AVM as of the as_of_month</td><td>350000</td>\n        <td></td></tr>\n<tr><td>property_value_mean</td><td>integer</td><td>HouseCanary automated monthly value AVM as of the as_of_month. Created using a robust model ensemble methodology.</td><td>375000</td>\n        <td></td></tr>\n<tr><td>property_value_upr</td><td>integer</td><td>HouseCanary upper bound AVM as of the as_of_month</td><td>390000</td>\n        <td></td></tr>\n<tr><td>total_equity_lwr</td><td>integer</td><td>Lower bound estimated equity as of the as_of_month. Calculated as property_value_lwr - total_lien.</td><td>75000</td>\n        <td></td></tr>\n<tr><td>total_equity_mean</td><td>integer</td><td>Mean estimated equity as of the as_of_month. Calculated as property_value_mean - total_lien.</td><td>80000</td>\n        <td></td></tr>\n<tr><td>total_equity_upr</td><td>integer</td><td>Upper bound estimated equity as of the as_of_month. Calculated as property_value_upr - total_lien.</td><td>85000</td>\n        <td></td></tr>\n<tr><td>total_lien</td><td>integer</td><td>Estimated total lien amount currently on the property</td><td>300000</td>\n        <td></td></tr>\n<tr><td>total_monthly_payments</td><td>integer</td><td>Estimated total monthly payments. Sum of all monthly_payment values of current_liens.</td><td>1800</td>\n        <td></td></tr>\n<tr><td>total_notice_ids</td><td>array</td><td>Complete list of all notice_ids on all liens</td><td><pre>[\n  101,\n  102,\n  103\n]</pre></td>\n        <td></td></tr>\n<tr><td>total_notice_ids[]</td><td>integer</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>current_liens</td><td>array</td><td>List of current liens on the property ordered by due date, soonest to furthest in the future</td><td></td>\n        <td></td></tr>\n<tr><td>current_liens[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>current_liens[].arm_change_date</td><td>string</td><td>Date that the ARM will change from fixed rate to adjustable (if applicable)</td><td>2022-03-15T12:00:00Z</td>\n        <td></td></tr>\n<tr><td>current_liens[].arm_index</td><td>string</td><td>ARM index followed by the lien</td><td>libor_6m</td>\n        <td>[cd_6m, cofi, libor_1m, libor_1y, libor_2m, libor_3m, libor_6m, mta_12m, prime, tbill_10y, tbill_1y, tbill_3y, tbill_5y, tbill_6m]</td></tr>\n<tr><td>current_liens[].due_date</td><td>string</td><td>The date the lien is scheduled to be paid-in-full</td><td>2038-12-01</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantee_1</td><td>string</td><td>Last name of first person listed on lien</td><td>Smith</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantee_1_forenames</td><td>string</td><td>First name of first person listed on lien</td><td>John</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantee_2</td><td>string</td><td>Last name of second person listed on lien</td><td>Johnson</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantee_2_forenames</td><td>string</td><td>First name of second person listed on lien</td><td>Jane</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantor_1</td><td>string</td><td>Name of the primary financier of the lien</td><td>Bank of America</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantor_2</td><td>string</td><td>Name of the secondary financier of the lien</td><td>Wells Fargo</td>\n        <td></td></tr>\n<tr><td>current_liens[].heloc</td><td>boolean</td><td>Whether the loan is a home equity line of credit</td><td></td>\n        <td></td></tr>\n<tr><td>current_liens[].interest_rate</td><td>number</td><td>The estimated interest rate, based on mortgage_years and FRED rates</td><td>4.5</td>\n        <td></td></tr>\n<tr><td>current_liens[].is_arm</td><td>boolean</td><td>Whether the lien is an adjustable rate mortgage</td><td>true</td>\n        <td></td></tr>\n<tr><td>current_liens[].lender_type</td><td>string</td><td>Entity making the loan.</td><td>mortgage_company</td>\n        <td>[bank, credit_union, finance_company, government, individual_private_party, insurance, internet, lending_institution, mortgage_company, other_company, reo_foreclosure_company, seller, subprime_lender]</td></tr>\n<tr><td>current_liens[].lien_amount</td><td>integer</td><td>Amount in dollars financed</td><td>250000</td>\n        <td></td></tr>\n<tr><td>current_liens[].lien_length_months</td><td>integer</td><td>Duration of the lien in months</td><td>360</td>\n        <td></td></tr>\n<tr><td>current_liens[].lien_months_completed_as_of_date</td><td>integer</td><td>Number of months matured by the lien</td><td>120</td>\n        <td></td></tr>\n<tr><td>current_liens[].lien_type</td><td>string</td><td>The type of lien acquired. One of [arm, commercial, construction, conventional, fannie_mae_freddie_mac (These entities don't originate anymore; most conventional meet criteria), farmers_home_administration, fha, land_contract, open_end, revolving_credit_line, second_to_cover_down_payment, seller_take_back, stand_alone_first, stand_alone_refi, stand_alone_second, state_veterans, usda, va]</td><td>conventional</td>\n        <td>[arm, commercial, construction, conventional, fannie_mae_freddie_mac, farmers_home_administration, fha, land_contract, open_end, revolving_credit_line, second_to_cover_down_payment, seller_take_back, stand_alone_first, stand_alone_refi, stand_alone_second, state_veterans, usda, va]</td></tr>\n<tr><td>current_liens[].monthly_payment</td><td>integer</td><td>Monthly lien payment (not including escrow)</td><td>1500</td>\n        <td></td></tr>\n<tr><td>current_liens[].notice_ids</td><td>array</td><td>Any notices of default on the lien (if they exist)</td><td><pre>[\n  201,\n  202\n]</pre></td>\n        <td></td></tr>\n<tr><td>current_liens[].notice_ids[]</td><td>integer</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>current_liens[].outstanding_principal</td><td>integer</td><td>Estimated outstanding principal owed on the lien.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>current_liens[].principal_paid_as_of_date</td><td>integer</td><td>Estimated paid principal. lien_amount - outstanding_principal</td><td>50000</td>\n        <td></td></tr>\n<tr><td>current_liens[].record_date</td><td>string</td><td>Date the lien originated</td><td>2010-05-15</td>\n        <td></td></tr>\n<tr><td>current_liens[].stand_alone_refi</td><td>boolean</td><td>Whether the refinance occurred with no concurrent loans</td><td>true</td>\n        <td></td></tr>\n</table>\n\n<table>\n    <tr>\n      <th>Notice ID</th>\n      <th>Description</th>\n      <th>Typical Impact</th>\n    </tr>\n    <tr><td>0</td><td>Due date unavailable</td><td>moderate</td></tr>\n    <tr><td>1</td><td>Record date unavailable</td><td>moderate</td></tr>\n    <tr><td>5</td><td>Estimated interest rate</td><td>moderate</td></tr>\n    <tr><td>6</td><td>ARM rate change year unavailable</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>7</td><td>Not variable from start ARM, missing ARM rate change year, no rate change frequency available</td><td>ARM treated as fixed</td></tr>\n    <tr><td>8</td><td>Not variable from start ARM, deriving missing ARM rate change year from rate change frequency</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>9</td><td>ARM rate change month &amp; day assumed</td><td>minor ARM assumptions</td></tr>\n    <tr><td>10</td><td>ARM rate change day assumed</td><td>minor ARM assumptions</td></tr>\n    <tr><td>11</td><td>Malformed ARM rate change date</td><td>ARM treated as fixed</td></tr>\n    <tr><td>12</td><td>Assuming ARM rate change frequency is annual</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>13</td><td>ARM fixed period duration malformed/errors-in-deriving</td><td>ARM treated as fixed</td></tr>\n    <tr><td>14</td><td>ARM fixed period duration too long, so as to be malformed/errors-in-deriving</td><td>ARM treated as fixed</td></tr>\n    <tr><td>15</td><td>Assuming ARM interest only duration is equal to fixed period duration</td><td>minor ARM assumptions</td></tr>\n    <tr><td>16</td><td>Malformed ARM interest only duration, disregarding interest only period</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>18</td><td>In fixed ARM period but using estimated initial fixed rate</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>19</td><td>Assuming LIBOR_6M as ARM index</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>20</td><td>Unable to retrieve ARM index rates</td><td>ARM treated as fixed</td></tr>\n    <tr><td>21</td><td>Assumptions made in ARM index rate fetch</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>22</td><td>ARM delta from index missing</td><td>ARM treated as fixed</td></tr>\n    <tr><td>24</td><td>No interest only period in ARM and estimating initial fixed rate</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>25</td><td>Unable to retrieve ARM index rate as of required calculation date</td><td>ARM treated as fixed</td></tr>\n    <tr><td>26</td><td>ARM rate index greater than 6 months out of date to required date</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>27</td><td>ARM rate index out of date by at most 6 months to required date</td><td>minor ARM assumptions</td></tr>\n    <tr><td>28</td><td>Last sale transfer date unavailable</td><td>minor</td></tr>\n    <tr><td>29</td><td>Lien length estimated</td><td>moderate</td></tr>\n    <tr><td>30</td><td>Lien determined to be active via heuristic filtering</td><td>moderate</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","ltv_details"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"066ab981-77dc-4b41-ad72-4eb0b078627d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/ltv_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","ltv_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/ltv_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"as_of_month\": \"2023-07\",\n        \"fsd\": 0.08,\n        \"in_default\": true,\n        \"last_default_date\": \"2022-12-20\",\n        \"ltv_lwr\": 0.8,\n        \"ltv_mean\": 0.75,\n        \"ltv_upr\": 0.78,\n        \"property_value_lwr\": 350000,\n        \"property_value_mean\": 375000,\n        \"property_value_upr\": 390000,\n        \"total_equity_lwr\": 75000,\n        \"total_equity_mean\": 80000,\n        \"total_equity_upr\": 85000,\n        \"total_lien\": 300000,\n        \"total_monthly_payments\": 1800,\n        \"total_notice_ids\": [\n          101,\n          102,\n          103\n        ],\n        \"current_liens\": [\n          {\n            \"arm_change_date\": \"2022-03-15T12:00:00Z\",\n            \"arm_index\": \"libor_6m\",\n            \"due_date\": \"2038-12-01\",\n            \"grantee_1\": \"Smith\",\n            \"grantee_1_forenames\": \"John\",\n            \"grantee_2\": \"Johnson\",\n            \"grantee_2_forenames\": \"Jane\",\n            \"grantor_1\": \"Bank of America\",\n            \"grantor_2\": \"Wells Fargo\",\n            \"heloc\": false,\n            \"interest_rate\": 4.5,\n            \"is_arm\": true,\n            \"lender_type\": \"mortgage_company\",\n            \"lien_amount\": 250000,\n            \"lien_length_months\": 360,\n            \"lien_months_completed_as_of_date\": 120,\n            \"lien_type\": \"conventional\",\n            \"monthly_payment\": 1500,\n            \"notice_ids\": [\n              201,\n              202\n            ],\n            \"outstanding_principal\": 200000,\n            \"principal_paid_as_of_date\": 50000,\n            \"record_date\": \"2010-05-15\",\n            \"stand_alone_refi\": true\n          },\n          {\n            \"arm_change_date\": \"2022-03-15T12:00:00Z\",\n            \"arm_index\": \"libor_6m\",\n            \"due_date\": \"2038-12-01\",\n            \"grantee_1\": \"Smith\",\n            \"grantee_1_forenames\": \"John\",\n            \"grantee_2\": \"Johnson\",\n            \"grantee_2_forenames\": \"Jane\",\n            \"grantor_1\": \"Bank of America\",\n            \"grantor_2\": \"Wells Fargo\",\n            \"heloc\": false,\n            \"interest_rate\": 4.5,\n            \"is_arm\": true,\n            \"lender_type\": \"mortgage_company\",\n            \"lien_amount\": 250000,\n            \"lien_length_months\": 360,\n            \"lien_months_completed_as_of_date\": 120,\n            \"lien_type\": \"conventional\",\n            \"monthly_payment\": 1500,\n            \"notice_ids\": [\n              201,\n              202\n            ],\n            \"outstanding_principal\": 200000,\n            \"principal_paid_as_of_date\": 50000,\n            \"record_date\": \"2010-05-15\",\n            \"stand_alone_refi\": true\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/ltv_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"as_of_month\": \"2023-07\",\n        \"fsd\": 0.08,\n        \"in_default\": true,\n        \"last_default_date\": \"2022-12-20\",\n        \"ltv_lwr\": 0.8,\n        \"ltv_mean\": 0.75,\n        \"ltv_upr\": 0.78,\n        \"property_value_lwr\": 350000,\n        \"property_value_mean\": 375000,\n        \"property_value_upr\": 390000,\n        \"total_equity_lwr\": 75000,\n        \"total_equity_mean\": 80000,\n        \"total_equity_upr\": 85000,\n        \"total_lien\": 300000,\n        \"total_monthly_payments\": 1800,\n        \"total_notice_ids\": [\n          101,\n          102,\n          103\n        ],\n        \"current_liens\": [\n          {\n            \"arm_change_date\": \"2022-03-15T12:00:00Z\",\n            \"arm_index\": \"libor_6m\",\n            \"due_date\": \"2038-12-01\",\n            \"grantee_1\": \"Smith\",\n            \"grantee_1_forenames\": \"John\",\n            \"grantee_2\": \"Johnson\",\n            \"grantee_2_forenames\": \"Jane\",\n            \"grantor_1\": \"Bank of America\",\n            \"grantor_2\": \"Wells Fargo\",\n            \"heloc\": false,\n            \"interest_rate\": 4.5,\n            \"is_arm\": true,\n            \"lender_type\": \"mortgage_company\",\n            \"lien_amount\": 250000,\n            \"lien_length_months\": 360,\n            \"lien_months_completed_as_of_date\": 120,\n            \"lien_type\": \"conventional\",\n            \"monthly_payment\": 1500,\n            \"notice_ids\": [\n              201,\n              202\n            ],\n            \"outstanding_principal\": 200000,\n            \"principal_paid_as_of_date\": 50000,\n            \"record_date\": \"2010-05-15\",\n            \"stand_alone_refi\": true\n          },\n          {\n            \"arm_change_date\": \"2022-03-15T12:00:00Z\",\n            \"arm_index\": \"libor_6m\",\n            \"due_date\": \"2038-12-01\",\n            \"grantee_1\": \"Smith\",\n            \"grantee_1_forenames\": \"John\",\n            \"grantee_2\": \"Johnson\",\n            \"grantee_2_forenames\": \"Jane\",\n            \"grantor_1\": \"Bank of America\",\n            \"grantor_2\": \"Wells Fargo\",\n            \"heloc\": false,\n            \"interest_rate\": 4.5,\n            \"is_arm\": true,\n            \"lender_type\": \"mortgage_company\",\n            \"lien_amount\": 250000,\n            \"lien_length_months\": 360,\n            \"lien_months_completed_as_of_date\": 120,\n            \"lien_type\": \"conventional\",\n            \"monthly_payment\": 1500,\n            \"notice_ids\": [\n              201,\n              202\n            ],\n            \"outstanding_principal\": 200000,\n            \"principal_paid_as_of_date\": 50000,\n            \"record_date\": \"2010-05-15\",\n            \"stand_alone_refi\": true\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"71e2c11e-2abb-4603-a0c5-c0b455734224","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/ltv_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","ltv_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"9bdc80e0-34ff-4d8b-806e-7c1dedd80f43","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/ltv_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","ltv_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"8788d525-0164-4e38-a734-7dfda5c9d2de","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/ltv_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","ltv_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c789bf2d-8fe0-45b8-b817-5c8709aa239f"},{"name":"Estimated LTV Details (Batch)","id":"9887a390-f504-439f-8706-cce02b5cea9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_details","description":"<p>Access comprehensive LTV data for properties, supporting mortgage and refinance decision-making.  Access comprehensive data on the estimated loan-to-value ratio (LTV) for properties. Receive granular information on grantors, grantees, monthly payments, current interest rates, original lien amounts, loan duration, progress made, outstanding principal, principal paid, record and due dates, ARM specifics, and more. Additionally, the endpoint delivers summary data covering equity, monthly payments, lien amounts, notice IDs, and property valuations.</p>\n<p>Active liens' paydown is calculated based on available lien terms, factoring in details such as ARM and interest-only periods when applicable. The response includes a sorted list of notice IDs with corresponding descriptions, which highlight findings during LTV generation and their usual impact on the calculation.  This is particularly useful for helping drive refinancing or loan origination analysis. </p>\n<p>Source: HouseCanary, Public Records, Freddie Mac </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>as_of_month</td><td>string</td><td>Year and month of the processing date for the loan to value calculation</td><td>2023-07</td>\n        <td></td></tr>\n<tr><td>fsd</td><td>number</td><td>Forecast standard deviation for the Housecanary AVM as of the as_of_month</td><td>0.08</td>\n        <td></td></tr>\n<tr><td>in_default</td><td>boolean</td><td>Whether the lien is in default</td><td>true</td>\n        <td></td></tr>\n<tr><td>last_default_date</td><td>string</td><td>Date of last default, if one exists</td><td>2022-12-20</td>\n        <td></td></tr>\n<tr><td>ltv_lwr</td><td>number</td><td>Estimated LTV lower bound. Calculated as total_lien / property_value_upr</td><td>0.8</td>\n        <td></td></tr>\n<tr><td>ltv_mean</td><td>number</td><td>Estimated LTV. Calculated as total_lien / property_value_upr</td><td>0.75</td>\n        <td></td></tr>\n<tr><td>ltv_upr</td><td>number</td><td>Estimated LTV upper bound. Calculated as total_lien / property_value_lwr</td><td>0.78</td>\n        <td></td></tr>\n<tr><td>property_value_lwr</td><td>integer</td><td>HouseCanary lower bound AVM as of the as_of_month</td><td>350000</td>\n        <td></td></tr>\n<tr><td>property_value_mean</td><td>integer</td><td>HouseCanary automated monthly value AVM as of the as_of_month. Created using a robust model ensemble methodology.</td><td>375000</td>\n        <td></td></tr>\n<tr><td>property_value_upr</td><td>integer</td><td>HouseCanary upper bound AVM as of the as_of_month</td><td>390000</td>\n        <td></td></tr>\n<tr><td>total_equity_lwr</td><td>integer</td><td>Lower bound estimated equity as of the as_of_month. Calculated as property_value_lwr - total_lien.</td><td>75000</td>\n        <td></td></tr>\n<tr><td>total_equity_mean</td><td>integer</td><td>Mean estimated equity as of the as_of_month. Calculated as property_value_mean - total_lien.</td><td>80000</td>\n        <td></td></tr>\n<tr><td>total_equity_upr</td><td>integer</td><td>Upper bound estimated equity as of the as_of_month. Calculated as property_value_upr - total_lien.</td><td>85000</td>\n        <td></td></tr>\n<tr><td>total_lien</td><td>integer</td><td>Estimated total lien amount currently on the property</td><td>300000</td>\n        <td></td></tr>\n<tr><td>total_monthly_payments</td><td>integer</td><td>Estimated total monthly payments. Sum of all monthly_payment values of current_liens.</td><td>1800</td>\n        <td></td></tr>\n<tr><td>total_notice_ids</td><td>array</td><td>Complete list of all notice_ids on all liens</td><td><pre>[\n  101,\n  102,\n  103\n]</pre></td>\n        <td></td></tr>\n<tr><td>total_notice_ids[]</td><td>integer</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>current_liens</td><td>array</td><td>List of current liens on the property ordered by due date, soonest to furthest in the future</td><td></td>\n        <td></td></tr>\n<tr><td>current_liens[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>current_liens[].arm_change_date</td><td>string</td><td>Date that the ARM will change from fixed rate to adjustable (if applicable)</td><td>2022-03-15T12:00:00Z</td>\n        <td></td></tr>\n<tr><td>current_liens[].arm_index</td><td>string</td><td>ARM index followed by the lien</td><td>libor_6m</td>\n        <td>[cd_6m, cofi, libor_1m, libor_1y, libor_2m, libor_3m, libor_6m, mta_12m, prime, tbill_10y, tbill_1y, tbill_3y, tbill_5y, tbill_6m]</td></tr>\n<tr><td>current_liens[].due_date</td><td>string</td><td>The date the lien is scheduled to be paid-in-full</td><td>2038-12-01</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantee_1</td><td>string</td><td>Last name of first person listed on lien</td><td>Smith</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantee_1_forenames</td><td>string</td><td>First name of first person listed on lien</td><td>John</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantee_2</td><td>string</td><td>Last name of second person listed on lien</td><td>Johnson</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantee_2_forenames</td><td>string</td><td>First name of second person listed on lien</td><td>Jane</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantor_1</td><td>string</td><td>Name of the primary financier of the lien</td><td>Bank of America</td>\n        <td></td></tr>\n<tr><td>current_liens[].grantor_2</td><td>string</td><td>Name of the secondary financier of the lien</td><td>Wells Fargo</td>\n        <td></td></tr>\n<tr><td>current_liens[].heloc</td><td>boolean</td><td>Whether the loan is a home equity line of credit</td><td></td>\n        <td></td></tr>\n<tr><td>current_liens[].interest_rate</td><td>number</td><td>The estimated interest rate, based on mortgage_years and FRED rates</td><td>4.5</td>\n        <td></td></tr>\n<tr><td>current_liens[].is_arm</td><td>boolean</td><td>Whether the lien is an adjustable rate mortgage</td><td>true</td>\n        <td></td></tr>\n<tr><td>current_liens[].lender_type</td><td>string</td><td>Entity making the loan.</td><td>mortgage_company</td>\n        <td>[bank, credit_union, finance_company, government, individual_private_party, insurance, internet, lending_institution, mortgage_company, other_company, reo_foreclosure_company, seller, subprime_lender]</td></tr>\n<tr><td>current_liens[].lien_amount</td><td>integer</td><td>Amount in dollars financed</td><td>250000</td>\n        <td></td></tr>\n<tr><td>current_liens[].lien_length_months</td><td>integer</td><td>Duration of the lien in months</td><td>360</td>\n        <td></td></tr>\n<tr><td>current_liens[].lien_months_completed_as_of_date</td><td>integer</td><td>Number of months matured by the lien</td><td>120</td>\n        <td></td></tr>\n<tr><td>current_liens[].lien_type</td><td>string</td><td>The type of lien acquired. One of [arm, commercial, construction, conventional, fannie_mae_freddie_mac (These entities don't originate anymore; most conventional meet criteria), farmers_home_administration, fha, land_contract, open_end, revolving_credit_line, second_to_cover_down_payment, seller_take_back, stand_alone_first, stand_alone_refi, stand_alone_second, state_veterans, usda, va]</td><td>conventional</td>\n        <td>[arm, commercial, construction, conventional, fannie_mae_freddie_mac, farmers_home_administration, fha, land_contract, open_end, revolving_credit_line, second_to_cover_down_payment, seller_take_back, stand_alone_first, stand_alone_refi, stand_alone_second, state_veterans, usda, va]</td></tr>\n<tr><td>current_liens[].monthly_payment</td><td>integer</td><td>Monthly lien payment (not including escrow)</td><td>1500</td>\n        <td></td></tr>\n<tr><td>current_liens[].notice_ids</td><td>array</td><td>Any notices of default on the lien (if they exist)</td><td><pre>[\n  201,\n  202\n]</pre></td>\n        <td></td></tr>\n<tr><td>current_liens[].notice_ids[]</td><td>integer</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>current_liens[].outstanding_principal</td><td>integer</td><td>Estimated outstanding principal owed on the lien.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>current_liens[].principal_paid_as_of_date</td><td>integer</td><td>Estimated paid principal. lien_amount - outstanding_principal</td><td>50000</td>\n        <td></td></tr>\n<tr><td>current_liens[].record_date</td><td>string</td><td>Date the lien originated</td><td>2010-05-15</td>\n        <td></td></tr>\n<tr><td>current_liens[].stand_alone_refi</td><td>boolean</td><td>Whether the refinance occurred with no concurrent loans</td><td>true</td>\n        <td></td></tr>\n</table>\n\n<table>\n    <tr>\n      <th>Notice ID</th>\n      <th>Description</th>\n      <th>Typical Impact</th>\n    </tr>\n    <tr><td>0</td><td>Due date unavailable</td><td>moderate</td></tr>\n    <tr><td>1</td><td>Record date unavailable</td><td>moderate</td></tr>\n    <tr><td>5</td><td>Estimated interest rate</td><td>moderate</td></tr>\n    <tr><td>6</td><td>ARM rate change year unavailable</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>7</td><td>Not variable from start ARM, missing ARM rate change year, no rate change frequency available</td><td>ARM treated as fixed</td></tr>\n    <tr><td>8</td><td>Not variable from start ARM, deriving missing ARM rate change year from rate change frequency</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>9</td><td>ARM rate change month &amp; day assumed</td><td>minor ARM assumptions</td></tr>\n    <tr><td>10</td><td>ARM rate change day assumed</td><td>minor ARM assumptions</td></tr>\n    <tr><td>11</td><td>Malformed ARM rate change date</td><td>ARM treated as fixed</td></tr>\n    <tr><td>12</td><td>Assuming ARM rate change frequency is annual</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>13</td><td>ARM fixed period duration malformed/errors-in-deriving</td><td>ARM treated as fixed</td></tr>\n    <tr><td>14</td><td>ARM fixed period duration too long, so as to be malformed/errors-in-deriving</td><td>ARM treated as fixed</td></tr>\n    <tr><td>15</td><td>Assuming ARM interest only duration is equal to fixed period duration</td><td>minor ARM assumptions</td></tr>\n    <tr><td>16</td><td>Malformed ARM interest only duration, disregarding interest only period</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>18</td><td>In fixed ARM period but using estimated initial fixed rate</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>19</td><td>Assuming LIBOR_6M as ARM index</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>20</td><td>Unable to retrieve ARM index rates</td><td>ARM treated as fixed</td></tr>\n    <tr><td>21</td><td>Assumptions made in ARM index rate fetch</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>22</td><td>ARM delta from index missing</td><td>ARM treated as fixed</td></tr>\n    <tr><td>24</td><td>No interest only period in ARM and estimating initial fixed rate</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>25</td><td>Unable to retrieve ARM index rate as of required calculation date</td><td>ARM treated as fixed</td></tr>\n    <tr><td>26</td><td>ARM rate index greater than 6 months out of date to required date</td><td>moderate ARM assumptions</td></tr>\n    <tr><td>27</td><td>ARM rate index out of date by at most 6 months to required date</td><td>minor ARM assumptions</td></tr>\n    <tr><td>28</td><td>Last sale transfer date unavailable</td><td>minor</td></tr>\n    <tr><td>29</td><td>Lien length estimated</td><td>moderate</td></tr>\n    <tr><td>30</td><td>Lien determined to be active via heuristic filtering</td><td>moderate</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","ltv_details"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"adc39a92-67eb-4c3a-8196-6a093d9e2eae","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/ltv_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"as_of_month\": \"2023-07\",\n        \"fsd\": 0.08,\n        \"in_default\": true,\n        \"last_default_date\": \"2022-12-20\",\n        \"ltv_lwr\": 0.8,\n        \"ltv_mean\": 0.75,\n        \"ltv_upr\": 0.78,\n        \"property_value_lwr\": 350000,\n        \"property_value_mean\": 375000,\n        \"property_value_upr\": 390000,\n        \"total_equity_lwr\": 75000,\n        \"total_equity_mean\": 80000,\n        \"total_equity_upr\": 85000,\n        \"total_lien\": 300000,\n        \"total_monthly_payments\": 1800,\n        \"total_notice_ids\": [\n          101,\n          102,\n          103\n        ],\n        \"current_liens\": [\n          {\n            \"arm_change_date\": \"2022-03-15T12:00:00Z\",\n            \"arm_index\": \"libor_6m\",\n            \"due_date\": \"2038-12-01\",\n            \"grantee_1\": \"Smith\",\n            \"grantee_1_forenames\": \"John\",\n            \"grantee_2\": \"Johnson\",\n            \"grantee_2_forenames\": \"Jane\",\n            \"grantor_1\": \"Bank of America\",\n            \"grantor_2\": \"Wells Fargo\",\n            \"heloc\": false,\n            \"interest_rate\": 4.5,\n            \"is_arm\": true,\n            \"lender_type\": \"mortgage_company\",\n            \"lien_amount\": 250000,\n            \"lien_length_months\": 360,\n            \"lien_months_completed_as_of_date\": 120,\n            \"lien_type\": \"conventional\",\n            \"monthly_payment\": 1500,\n            \"notice_ids\": [\n              201,\n              202\n            ],\n            \"outstanding_principal\": 200000,\n            \"principal_paid_as_of_date\": 50000,\n            \"record_date\": \"2010-05-15\",\n            \"stand_alone_refi\": true\n          },\n          {\n            \"arm_change_date\": \"2022-03-15T12:00:00Z\",\n            \"arm_index\": \"libor_6m\",\n            \"due_date\": \"2038-12-01\",\n            \"grantee_1\": \"Smith\",\n            \"grantee_1_forenames\": \"John\",\n            \"grantee_2\": \"Johnson\",\n            \"grantee_2_forenames\": \"Jane\",\n            \"grantor_1\": \"Bank of America\",\n            \"grantor_2\": \"Wells Fargo\",\n            \"heloc\": false,\n            \"interest_rate\": 4.5,\n            \"is_arm\": true,\n            \"lender_type\": \"mortgage_company\",\n            \"lien_amount\": 250000,\n            \"lien_length_months\": 360,\n            \"lien_months_completed_as_of_date\": 120,\n            \"lien_type\": \"conventional\",\n            \"monthly_payment\": 1500,\n            \"notice_ids\": [\n              201,\n              202\n            ],\n            \"outstanding_principal\": 200000,\n            \"principal_paid_as_of_date\": 50000,\n            \"record_date\": \"2010-05-15\",\n            \"stand_alone_refi\": true\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/ltv_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"as_of_month\": \"2023-07\",\n        \"fsd\": 0.08,\n        \"in_default\": true,\n        \"last_default_date\": \"2022-12-20\",\n        \"ltv_lwr\": 0.8,\n        \"ltv_mean\": 0.75,\n        \"ltv_upr\": 0.78,\n        \"property_value_lwr\": 350000,\n        \"property_value_mean\": 375000,\n        \"property_value_upr\": 390000,\n        \"total_equity_lwr\": 75000,\n        \"total_equity_mean\": 80000,\n        \"total_equity_upr\": 85000,\n        \"total_lien\": 300000,\n        \"total_monthly_payments\": 1800,\n        \"total_notice_ids\": [\n          101,\n          102,\n          103\n        ],\n        \"current_liens\": [\n          {\n            \"arm_change_date\": \"2022-03-15T12:00:00Z\",\n            \"arm_index\": \"libor_6m\",\n            \"due_date\": \"2038-12-01\",\n            \"grantee_1\": \"Smith\",\n            \"grantee_1_forenames\": \"John\",\n            \"grantee_2\": \"Johnson\",\n            \"grantee_2_forenames\": \"Jane\",\n            \"grantor_1\": \"Bank of America\",\n            \"grantor_2\": \"Wells Fargo\",\n            \"heloc\": false,\n            \"interest_rate\": 4.5,\n            \"is_arm\": true,\n            \"lender_type\": \"mortgage_company\",\n            \"lien_amount\": 250000,\n            \"lien_length_months\": 360,\n            \"lien_months_completed_as_of_date\": 120,\n            \"lien_type\": \"conventional\",\n            \"monthly_payment\": 1500,\n            \"notice_ids\": [\n              201,\n              202\n            ],\n            \"outstanding_principal\": 200000,\n            \"principal_paid_as_of_date\": 50000,\n            \"record_date\": \"2010-05-15\",\n            \"stand_alone_refi\": true\n          },\n          {\n            \"arm_change_date\": \"2022-03-15T12:00:00Z\",\n            \"arm_index\": \"libor_6m\",\n            \"due_date\": \"2038-12-01\",\n            \"grantee_1\": \"Smith\",\n            \"grantee_1_forenames\": \"John\",\n            \"grantee_2\": \"Johnson\",\n            \"grantee_2_forenames\": \"Jane\",\n            \"grantor_1\": \"Bank of America\",\n            \"grantor_2\": \"Wells Fargo\",\n            \"heloc\": false,\n            \"interest_rate\": 4.5,\n            \"is_arm\": true,\n            \"lender_type\": \"mortgage_company\",\n            \"lien_amount\": 250000,\n            \"lien_length_months\": 360,\n            \"lien_months_completed_as_of_date\": 120,\n            \"lien_type\": \"conventional\",\n            \"monthly_payment\": 1500,\n            \"notice_ids\": [\n              201,\n              202\n            ],\n            \"outstanding_principal\": 200000,\n            \"principal_paid_as_of_date\": 50000,\n            \"record_date\": \"2010-05-15\",\n            \"stand_alone_refi\": true\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"cf3b301f-7e0c-4c49-bd32-ca72f83782a1","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_details"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c1ebbbc3-edce-4112-8d55-2996eb407379","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_details"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4691a48c-bd83-4eb7-a4bc-e6549415948b","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_details"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9887a390-f504-439f-8706-cce02b5cea9d"},{"name":"Estimated LTV at Origination","id":"1fada7e5-af79-4f07-9994-0668005732ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/ltv_origination?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Obtain LTV estimates at origination for primary loans, informing loan performance analysis and risk evaluations. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>ltv</td><td>number</td><td>Estimated loan-to-value ratio (LTV) at time of origination</td><td>0.75</td>\n        <td></td></tr>\n<tr><td>lien</td><td>integer</td><td>Amount in dollars financed</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value</td><td>integer</td><td>Dollar value of the property. May be null in cases where no liens are present (leading to a 0 LTV) and a value is unavailable.</td><td>280000</td>\n        <td></td></tr>\n<tr><td>source</td><td>string</td><td>Source from which value is derived. One of: deed, mls, avm_block, avm_blockgroup, avm_zip, avm_msa, avm_state</td><td>mls</td>\n        <td>[deed, mls, avm_block, avm_blockgroup, avm_zip, avm_msa, avm_state]</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","ltv_origination"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"2ca3134a-9823-4c0f-abb1-f3934bf0f999","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/ltv_origination?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","ltv_origination"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/ltv_origination\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"ltv\": 0.75,\n        \"lien\": 200000,\n        \"value\": 280000,\n        \"source\": \"mls\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/ltv_origination\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"ltv\": 0.75,\n        \"lien\": 200000,\n        \"value\": 280000,\n        \"source\": \"mls\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"2e167a04-c68c-4806-b50e-30a10a94942d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/ltv_origination?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","ltv_origination"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"8cf05f6e-8ec3-4c29-aee4-89fd917f4e72","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/ltv_origination?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","ltv_origination"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ddd56200-684a-41f8-98ed-33b25f3aec4c","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/ltv_origination?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","ltv_origination"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1fada7e5-af79-4f07-9994-0668005732ce"},{"name":"Estimated LTV at Origination (Batch)","id":"2f213400-9104-4353-a013-d691f91ab5ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_origination","description":"<p>Obtain LTV estimates at origination for primary loans, informing loan performance analysis and risk evaluations. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>ltv</td><td>number</td><td>Estimated loan-to-value ratio (LTV) at time of origination</td><td>0.75</td>\n        <td></td></tr>\n<tr><td>lien</td><td>integer</td><td>Amount in dollars financed</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value</td><td>integer</td><td>Dollar value of the property. May be null in cases where no liens are present (leading to a 0 LTV) and a value is unavailable.</td><td>280000</td>\n        <td></td></tr>\n<tr><td>source</td><td>string</td><td>Source from which value is derived. One of: deed, mls, avm_block, avm_blockgroup, avm_zip, avm_msa, avm_state</td><td>mls</td>\n        <td>[deed, mls, avm_block, avm_blockgroup, avm_zip, avm_msa, avm_state]</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","ltv_origination"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"52adc989-c50a-4cb4-92b7-c50f8ef4cb16","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_origination"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/ltv_origination\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"ltv\": 0.75,\n        \"lien\": 200000,\n        \"value\": 280000,\n        \"source\": \"mls\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/ltv_origination\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"ltv\": 0.75,\n        \"lien\": 200000,\n        \"value\": 280000,\n        \"source\": \"mls\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"4d5939f7-583d-44ca-b67c-6041b987c550","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_origination"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"09674b90-965b-468d-a65c-c89ae42c6dbf","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_origination"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2ef35ee5-d1f6-401a-8ca7-9bda78e17de9","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/ltv_origination"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2f213400-9104-4353-a013-d691f91ab5ec"},{"name":"Mortgage Liens - All","id":"137821d6-e664-42dc-91dc-ba6bb5f2c995","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/mortgage_lien_all?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>View all available liens/mortgages, including those from previous owners, for comprehensive property lien history. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].amount</td><td>integer</td><td>Amount in dollars financed</td><td>200000</td>\n        <td></td></tr>\n<tr><td>[].apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>1234567890</td>\n        <td></td></tr>\n<tr><td>[].arm_index</td><td>string</td><td>ARM index followed by the lien</td><td>libor_6m</td>\n        <td>[cd_6m, cofi, libor_1m, libor_1y, libor_2m, libor_3m, libor_6m, mta_12m, prime, tbill_10y, tbill_1y, tbill_3y, tbill_5y, tbill_6m]</td></tr>\n<tr><td>[].due_date</td><td>string</td><td>The date the lien is scheduled to be paid-in-full</td><td>2023-12-31</td>\n        <td></td></tr>\n<tr><td>[].event_type</td><td>string</td><td>The type of loan acquired</td><td>purchase</td>\n        <td></td></tr>\n<tr><td>[].fifteen_yr</td><td>number</td><td>The FRED 15-year mortgage rate at the time of origination</td><td>3.5</td>\n        <td></td></tr>\n<tr><td>[].fips</td><td>string</td><td>5-digit Federal Information Processing Standards county code</td><td>06037</td>\n        <td></td></tr>\n<tr><td>[].grantee_1</td><td>string</td><td>Last name of first person listed on lien</td><td>Smith</td>\n        <td></td></tr>\n<tr><td>[].grantee_1_forenames</td><td>string</td><td>First name of first person listed on lien</td><td>John</td>\n        <td></td></tr>\n<tr><td>[].grantee_2</td><td>string</td><td>Last name of second person listed on lien</td><td>Johnson</td>\n        <td></td></tr>\n<tr><td>[].grantee_2_forenames</td><td>string</td><td>First name of second person listed on lien</td><td>Jane</td>\n        <td></td></tr>\n<tr><td>[].grantor_1</td><td>string</td><td>Name of the primary financier of the lien</td><td>ABC Bank</td>\n        <td></td></tr>\n<tr><td>[].grantor_2</td><td>string</td><td>Name of the secondary financier of the lien</td><td>XYZ Mortgage</td>\n        <td></td></tr>\n<tr><td>[].hc_interest_rate</td><td>number</td><td>HouseCanary estimated interest rate. Will differ from “interest_rate” if and only if there is a stated interest rate in the recorder's books</td><td>3.75</td>\n        <td></td></tr>\n<tr><td>[].heloc</td><td>boolean</td><td>Whether the loan is a home equity line of credit</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].interest_rate</td><td>number</td><td>The estimated interest rate, based on mortgage_years and FRED rates</td><td>4.25</td>\n        <td></td></tr>\n<tr><td>[].lender_type</td><td>string</td><td>Entity making the loan</td><td>bank</td>\n        <td>[bank, credit_union, finance_company, government, individual_private_party, insurance, internet, lending_institution, mortgage_company, other_company, reo_foreclosure_company, seller, subprime_lender]</td></tr>\n<tr><td>[].lien_type</td><td>string</td><td>The type of lien acquired</td><td>conventional</td>\n        <td>[arm, commercial, construction, conventional, fannie_mae_freddie_mac, farmers_home_administration, fha, land_contract, open_end, revolving_credit_line, second_to_cover_down_payment, seller_take_back, stand_alone_first, stand_alone_refi, stand_alone_second, state_veterans, usda, va]</td></tr>\n<tr><td>[].mortgage_years</td><td>integer</td><td>Estimated mortgage timeframe. Calculated as floor(due_date - record_date)</td><td>30</td>\n        <td></td></tr>\n<tr><td>[].record_book</td><td>string</td><td>Record book number for the recorded lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>12345</td>\n        <td></td></tr>\n<tr><td>[].record_date</td><td>string</td><td>Date the lien originated</td><td>2023-01-15</td>\n        <td></td></tr>\n<tr><td>[].record_doc</td><td>string</td><td>The assessor's document number for this lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>56789</td>\n        <td></td></tr>\n<tr><td>[].record_page</td><td>string</td><td>Record page of the lien in the county recorder. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>123</td>\n        <td></td></tr>\n<tr><td>[].stand_alone_refi</td><td>boolean</td><td>Whether the refinance occurred with no concurrent loans</td><td></td>\n        <td></td></tr>\n<tr><td>[].thirty_yr</td><td>number</td><td>The FRED 30-year mortgage rate at the time of origination</td><td>4</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","mortgage_lien_all"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"44fba0f6-f29a-4f7b-9158-ce6f421f839e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien_all?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien_all"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/mortgage_lien_all\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        },\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/mortgage_lien_all\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        },\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"3352f4e8-e274-4730-8394-a8e2d15d2799","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien_all?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien_all"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"031db02f-5f57-4112-819a-653791c3eafc","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien_all?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien_all"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e1ffb9d2-4d3d-4073-8654-3f3fbb0a1b9b","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien_all?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien_all"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"137821d6-e664-42dc-91dc-ba6bb5f2c995"},{"name":"Mortgage Liens - All (Batch)","id":"f0403060-4079-4ec5-b2a1-b555de6d1fa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/mortgage_lien_all?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>View all available liens/mortgages, including those from previous owners, for comprehensive property lien history. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].amount</td><td>integer</td><td>Amount in dollars financed</td><td>200000</td>\n        <td></td></tr>\n<tr><td>[].apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>1234567890</td>\n        <td></td></tr>\n<tr><td>[].arm_index</td><td>string</td><td>ARM index followed by the lien</td><td>libor_6m</td>\n        <td>[cd_6m, cofi, libor_1m, libor_1y, libor_2m, libor_3m, libor_6m, mta_12m, prime, tbill_10y, tbill_1y, tbill_3y, tbill_5y, tbill_6m]</td></tr>\n<tr><td>[].due_date</td><td>string</td><td>The date the lien is scheduled to be paid-in-full</td><td>2023-12-31</td>\n        <td></td></tr>\n<tr><td>[].event_type</td><td>string</td><td>The type of loan acquired</td><td>purchase</td>\n        <td></td></tr>\n<tr><td>[].fifteen_yr</td><td>number</td><td>The FRED 15-year mortgage rate at the time of origination</td><td>3.5</td>\n        <td></td></tr>\n<tr><td>[].fips</td><td>string</td><td>5-digit Federal Information Processing Standards county code</td><td>06037</td>\n        <td></td></tr>\n<tr><td>[].grantee_1</td><td>string</td><td>Last name of first person listed on lien</td><td>Smith</td>\n        <td></td></tr>\n<tr><td>[].grantee_1_forenames</td><td>string</td><td>First name of first person listed on lien</td><td>John</td>\n        <td></td></tr>\n<tr><td>[].grantee_2</td><td>string</td><td>Last name of second person listed on lien</td><td>Johnson</td>\n        <td></td></tr>\n<tr><td>[].grantee_2_forenames</td><td>string</td><td>First name of second person listed on lien</td><td>Jane</td>\n        <td></td></tr>\n<tr><td>[].grantor_1</td><td>string</td><td>Name of the primary financier of the lien</td><td>ABC Bank</td>\n        <td></td></tr>\n<tr><td>[].grantor_2</td><td>string</td><td>Name of the secondary financier of the lien</td><td>XYZ Mortgage</td>\n        <td></td></tr>\n<tr><td>[].hc_interest_rate</td><td>number</td><td>HouseCanary estimated interest rate. Will differ from “interest_rate” if and only if there is a stated interest rate in the recorder's books</td><td>3.75</td>\n        <td></td></tr>\n<tr><td>[].heloc</td><td>boolean</td><td>Whether the loan is a home equity line of credit</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].interest_rate</td><td>number</td><td>The estimated interest rate, based on mortgage_years and FRED rates</td><td>4.25</td>\n        <td></td></tr>\n<tr><td>[].lender_type</td><td>string</td><td>Entity making the loan</td><td>bank</td>\n        <td>[bank, credit_union, finance_company, government, individual_private_party, insurance, internet, lending_institution, mortgage_company, other_company, reo_foreclosure_company, seller, subprime_lender]</td></tr>\n<tr><td>[].lien_type</td><td>string</td><td>The type of lien acquired</td><td>conventional</td>\n        <td>[arm, commercial, construction, conventional, fannie_mae_freddie_mac, farmers_home_administration, fha, land_contract, open_end, revolving_credit_line, second_to_cover_down_payment, seller_take_back, stand_alone_first, stand_alone_refi, stand_alone_second, state_veterans, usda, va]</td></tr>\n<tr><td>[].mortgage_years</td><td>integer</td><td>Estimated mortgage timeframe. Calculated as floor(due_date - record_date)</td><td>30</td>\n        <td></td></tr>\n<tr><td>[].record_book</td><td>string</td><td>Record book number for the recorded lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>12345</td>\n        <td></td></tr>\n<tr><td>[].record_date</td><td>string</td><td>Date the lien originated</td><td>2023-01-15</td>\n        <td></td></tr>\n<tr><td>[].record_doc</td><td>string</td><td>The assessor's document number for this lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>56789</td>\n        <td></td></tr>\n<tr><td>[].record_page</td><td>string</td><td>Record page of the lien in the county recorder. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>123</td>\n        <td></td></tr>\n<tr><td>[].stand_alone_refi</td><td>boolean</td><td>Whether the refinance occurred with no concurrent loans</td><td></td>\n        <td></td></tr>\n<tr><td>[].thirty_yr</td><td>number</td><td>The FRED 30-year mortgage rate at the time of origination</td><td>4</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","mortgage_lien_all"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"2f5685b7-d005-46fc-b266-90edfa584553","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien_all?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien_all"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/mortgage_lien_all\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        },\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/mortgage_lien_all\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        },\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"83d3360c-f7ba-48e5-870a-3e5eeefac3e9","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien_all?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien_all"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ca553d09-cf58-43cb-bace-f7f2772cb0a0","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien_all?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien_all"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b9ee1715-883f-453e-b056-d2313515290e","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien_all?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien_all"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f0403060-4079-4ec5-b2a1-b555de6d1fa7"},{"name":"Mortgage Lien - Most Recent","id":"3d509b2d-2c1b-462b-96cb-25b64a5c969e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/mortgage_lien?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Identify liens/mortgages since the last arm's length transaction, crucial for due diligence and property encumbrance checks. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].amount</td><td>integer</td><td>Amount in dollars financed</td><td>200000</td>\n        <td></td></tr>\n<tr><td>[].apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>1234567890</td>\n        <td></td></tr>\n<tr><td>[].arm_index</td><td>string</td><td>ARM index followed by the lien</td><td>libor_6m</td>\n        <td>[cd_6m, cofi, libor_1m, libor_1y, libor_2m, libor_3m, libor_6m, mta_12m, prime, tbill_10y, tbill_1y, tbill_3y, tbill_5y, tbill_6m]</td></tr>\n<tr><td>[].due_date</td><td>string</td><td>The date the lien is scheduled to be paid-in-full</td><td>2023-12-31</td>\n        <td></td></tr>\n<tr><td>[].event_type</td><td>string</td><td>The type of loan acquired</td><td>purchase</td>\n        <td></td></tr>\n<tr><td>[].fifteen_yr</td><td>number</td><td>The FRED 15-year mortgage rate at the time of origination</td><td>3.5</td>\n        <td></td></tr>\n<tr><td>[].fips</td><td>string</td><td>5-digit Federal Information Processing Standards county code</td><td>06037</td>\n        <td></td></tr>\n<tr><td>[].grantee_1</td><td>string</td><td>Last name of first person listed on lien</td><td>Smith</td>\n        <td></td></tr>\n<tr><td>[].grantee_1_forenames</td><td>string</td><td>First name of first person listed on lien</td><td>John</td>\n        <td></td></tr>\n<tr><td>[].grantee_2</td><td>string</td><td>Last name of second person listed on lien</td><td>Johnson</td>\n        <td></td></tr>\n<tr><td>[].grantee_2_forenames</td><td>string</td><td>First name of second person listed on lien</td><td>Jane</td>\n        <td></td></tr>\n<tr><td>[].grantor_1</td><td>string</td><td>Name of the primary financier of the lien</td><td>ABC Bank</td>\n        <td></td></tr>\n<tr><td>[].grantor_2</td><td>string</td><td>Name of the secondary financier of the lien</td><td>XYZ Mortgage</td>\n        <td></td></tr>\n<tr><td>[].hc_interest_rate</td><td>number</td><td>HouseCanary estimated interest rate. Will differ from “interest_rate” if and only if there is a stated interest rate in the recorder's books</td><td>3.75</td>\n        <td></td></tr>\n<tr><td>[].heloc</td><td>boolean</td><td>Whether the loan is a home equity line of credit</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].interest_rate</td><td>number</td><td>The estimated interest rate, based on mortgage_years and FRED rates</td><td>4.25</td>\n        <td></td></tr>\n<tr><td>[].lender_type</td><td>string</td><td>Entity making the loan</td><td>bank</td>\n        <td>[bank, credit_union, finance_company, government, individual_private_party, insurance, internet, lending_institution, mortgage_company, other_company, reo_foreclosure_company, seller, subprime_lender]</td></tr>\n<tr><td>[].lien_type</td><td>string</td><td>The type of lien acquired</td><td>conventional</td>\n        <td>[arm, commercial, construction, conventional, fannie_mae_freddie_mac, farmers_home_administration, fha, land_contract, open_end, revolving_credit_line, second_to_cover_down_payment, seller_take_back, stand_alone_first, stand_alone_refi, stand_alone_second, state_veterans, usda, va]</td></tr>\n<tr><td>[].mortgage_years</td><td>integer</td><td>Estimated mortgage timeframe. Calculated as floor(due_date - record_date)</td><td>30</td>\n        <td></td></tr>\n<tr><td>[].record_book</td><td>string</td><td>Record book number for the recorded lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>12345</td>\n        <td></td></tr>\n<tr><td>[].record_date</td><td>string</td><td>Date the lien originated</td><td>2023-01-15</td>\n        <td></td></tr>\n<tr><td>[].record_doc</td><td>string</td><td>The assessor's document number for this lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>56789</td>\n        <td></td></tr>\n<tr><td>[].record_page</td><td>string</td><td>Record page of the lien in the county recorder. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>123</td>\n        <td></td></tr>\n<tr><td>[].stand_alone_refi</td><td>boolean</td><td>Whether the refinance occurred with no concurrent loans</td><td></td>\n        <td></td></tr>\n<tr><td>[].thirty_yr</td><td>number</td><td>The FRED 30-year mortgage rate at the time of origination</td><td>4</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","mortgage_lien"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"3028b700-bc68-4b38-aea5-1a7934364c1b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/mortgage_lien\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        },\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/mortgage_lien\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        },\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"cb0c60f6-3fe5-4d0c-ba7c-a5d828d9ea5b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"198644a4-a83b-454e-ba42-56654f761be2","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2dfb6c2f-003f-4173-849b-f33fcb5a2567","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"3d509b2d-2c1b-462b-96cb-25b64a5c969e"},{"name":"Mortgage Lien - Most Recent (Batch)","id":"0c1bbcd6-2767-4180-a7aa-f8878b1e3a7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/mortgage_lien?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Identify liens/mortgages since the last arm's length transaction, crucial for due diligence and property encumbrance checks. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].amount</td><td>integer</td><td>Amount in dollars financed</td><td>200000</td>\n        <td></td></tr>\n<tr><td>[].apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>1234567890</td>\n        <td></td></tr>\n<tr><td>[].arm_index</td><td>string</td><td>ARM index followed by the lien</td><td>libor_6m</td>\n        <td>[cd_6m, cofi, libor_1m, libor_1y, libor_2m, libor_3m, libor_6m, mta_12m, prime, tbill_10y, tbill_1y, tbill_3y, tbill_5y, tbill_6m]</td></tr>\n<tr><td>[].due_date</td><td>string</td><td>The date the lien is scheduled to be paid-in-full</td><td>2023-12-31</td>\n        <td></td></tr>\n<tr><td>[].event_type</td><td>string</td><td>The type of loan acquired</td><td>purchase</td>\n        <td></td></tr>\n<tr><td>[].fifteen_yr</td><td>number</td><td>The FRED 15-year mortgage rate at the time of origination</td><td>3.5</td>\n        <td></td></tr>\n<tr><td>[].fips</td><td>string</td><td>5-digit Federal Information Processing Standards county code</td><td>06037</td>\n        <td></td></tr>\n<tr><td>[].grantee_1</td><td>string</td><td>Last name of first person listed on lien</td><td>Smith</td>\n        <td></td></tr>\n<tr><td>[].grantee_1_forenames</td><td>string</td><td>First name of first person listed on lien</td><td>John</td>\n        <td></td></tr>\n<tr><td>[].grantee_2</td><td>string</td><td>Last name of second person listed on lien</td><td>Johnson</td>\n        <td></td></tr>\n<tr><td>[].grantee_2_forenames</td><td>string</td><td>First name of second person listed on lien</td><td>Jane</td>\n        <td></td></tr>\n<tr><td>[].grantor_1</td><td>string</td><td>Name of the primary financier of the lien</td><td>ABC Bank</td>\n        <td></td></tr>\n<tr><td>[].grantor_2</td><td>string</td><td>Name of the secondary financier of the lien</td><td>XYZ Mortgage</td>\n        <td></td></tr>\n<tr><td>[].hc_interest_rate</td><td>number</td><td>HouseCanary estimated interest rate. Will differ from “interest_rate” if and only if there is a stated interest rate in the recorder's books</td><td>3.75</td>\n        <td></td></tr>\n<tr><td>[].heloc</td><td>boolean</td><td>Whether the loan is a home equity line of credit</td><td>true</td>\n        <td></td></tr>\n<tr><td>[].interest_rate</td><td>number</td><td>The estimated interest rate, based on mortgage_years and FRED rates</td><td>4.25</td>\n        <td></td></tr>\n<tr><td>[].lender_type</td><td>string</td><td>Entity making the loan</td><td>bank</td>\n        <td>[bank, credit_union, finance_company, government, individual_private_party, insurance, internet, lending_institution, mortgage_company, other_company, reo_foreclosure_company, seller, subprime_lender]</td></tr>\n<tr><td>[].lien_type</td><td>string</td><td>The type of lien acquired</td><td>conventional</td>\n        <td>[arm, commercial, construction, conventional, fannie_mae_freddie_mac, farmers_home_administration, fha, land_contract, open_end, revolving_credit_line, second_to_cover_down_payment, seller_take_back, stand_alone_first, stand_alone_refi, stand_alone_second, state_veterans, usda, va]</td></tr>\n<tr><td>[].mortgage_years</td><td>integer</td><td>Estimated mortgage timeframe. Calculated as floor(due_date - record_date)</td><td>30</td>\n        <td></td></tr>\n<tr><td>[].record_book</td><td>string</td><td>Record book number for the recorded lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>12345</td>\n        <td></td></tr>\n<tr><td>[].record_date</td><td>string</td><td>Date the lien originated</td><td>2023-01-15</td>\n        <td></td></tr>\n<tr><td>[].record_doc</td><td>string</td><td>The assessor's document number for this lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>56789</td>\n        <td></td></tr>\n<tr><td>[].record_page</td><td>string</td><td>Record page of the lien in the county recorder. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>123</td>\n        <td></td></tr>\n<tr><td>[].stand_alone_refi</td><td>boolean</td><td>Whether the refinance occurred with no concurrent loans</td><td></td>\n        <td></td></tr>\n<tr><td>[].thirty_yr</td><td>number</td><td>The FRED 30-year mortgage rate at the time of origination</td><td>4</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","mortgage_lien"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"d72cbe76-28e7-42ad-a412-e0925f999817","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/mortgage_lien\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        },\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/mortgage_lien\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        },\n        {\n          \"amount\": 200000,\n          \"apn\": \"1234567890\",\n          \"arm_index\": \"libor_6m\",\n          \"due_date\": \"2023-12-31\",\n          \"event_type\": \"purchase\",\n          \"fifteen_yr\": 3.5,\n          \"fips\": \"06037\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"ABC Bank\",\n          \"grantor_2\": \"XYZ Mortgage\",\n          \"hc_interest_rate\": 3.75,\n          \"heloc\": true,\n          \"interest_rate\": 4.25,\n          \"lender_type\": \"bank\",\n          \"lien_type\": \"conventional\",\n          \"mortgage_years\": 30,\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-01-15\",\n          \"record_doc\": \"56789\",\n          \"record_page\": \"123\",\n          \"stand_alone_refi\": false,\n          \"thirty_yr\": 4\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"f91c8f63-dfd1-4fb2-8124-92bc806d8fd5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0f1f1ba0-e8ac-4499-8241-9e79317a057f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"fbed964e-bbc2-4f8c-b9f0-d1d256ffcc34","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/mortgage_lien?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","mortgage_lien"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0c1bbcd6-2767-4180-a7aa-f8878b1e3a7a"},{"name":"Notice of Default","id":"629be9db-cbc6-41fc-b4d8-2d40a13ce372","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/nod?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Obtain non-rescinded Notice of Default (NOD) events for properties, useful for assessing potential foreclosure risks and investment viability. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>1234567890</td>\n        </tr>\n<tr><td>event_type</td><td>string</td><td>Type of notice</td><td>foreclosure</td>\n        </tr>\n<tr><td>fips</td><td>string</td><td>5-digit Federal Information Processing Standards county code</td><td>06037</td>\n        </tr>\n<tr><td>record_book</td><td>string</td><td>Record book number for the recorded lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>RB12345</td>\n        </tr>\n<tr><td>record_date</td><td>string</td><td>Date the lien originated</td><td>2023-01-15</td>\n        </tr>\n<tr><td>record_doc</td><td>string</td><td>The assessor's document number for this lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>DOC56789</td>\n        </tr>\n<tr><td>record_page</td><td>string</td><td>Record page of the lien in the county recorder. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>PG123</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","nod"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"e8362de4-b5ac-4ea7-b7ca-b479f896b708","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/nod?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","nod"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/nod\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"apn\": \"1234567890\",\n        \"event_type\": \"foreclosure\",\n        \"fips\": \"06037\",\n        \"record_book\": \"RB12345\",\n        \"record_date\": \"2023-01-15\",\n        \"record_doc\": \"DOC56789\",\n        \"record_page\": \"PG123\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/nod\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"apn\": \"1234567890\",\n        \"event_type\": \"foreclosure\",\n        \"fips\": \"06037\",\n        \"record_book\": \"RB12345\",\n        \"record_date\": \"2023-01-15\",\n        \"record_doc\": \"DOC56789\",\n        \"record_page\": \"PG123\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"ff0ad89d-1e49-4133-80d4-af88b05446ef","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/nod?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","nod"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a36c5f88-3b68-4c5e-9396-38749b99a155","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/nod?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","nod"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ab8b44cf-804c-4e43-94d6-de701f1594f8","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/nod?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","nod"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"629be9db-cbc6-41fc-b4d8-2d40a13ce372"},{"name":"Notice of Default (Batch)","id":"6ebea5a6-6a15-446a-84f7-2bbe03d11559","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/nod?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Obtain non-rescinded Notice of Default (NOD) events for properties, useful for assessing potential foreclosure risks and investment viability. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>1234567890</td>\n        </tr>\n<tr><td>event_type</td><td>string</td><td>Type of notice</td><td>foreclosure</td>\n        </tr>\n<tr><td>fips</td><td>string</td><td>5-digit Federal Information Processing Standards county code</td><td>06037</td>\n        </tr>\n<tr><td>record_book</td><td>string</td><td>Record book number for the recorded lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>RB12345</td>\n        </tr>\n<tr><td>record_date</td><td>string</td><td>Date the lien originated</td><td>2023-01-15</td>\n        </tr>\n<tr><td>record_doc</td><td>string</td><td>The assessor's document number for this lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>DOC56789</td>\n        </tr>\n<tr><td>record_page</td><td>string</td><td>Record page of the lien in the county recorder. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>PG123</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","nod"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"e9592087-ad66-4760-80e8-943a88f1697f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/nod?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","nod"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/nod\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"apn\": \"1234567890\",\n        \"event_type\": \"foreclosure\",\n        \"fips\": \"06037\",\n        \"record_book\": \"RB12345\",\n        \"record_date\": \"2023-01-15\",\n        \"record_doc\": \"DOC56789\",\n        \"record_page\": \"PG123\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/nod\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"apn\": \"1234567890\",\n        \"event_type\": \"foreclosure\",\n        \"fips\": \"06037\",\n        \"record_book\": \"RB12345\",\n        \"record_date\": \"2023-01-15\",\n        \"record_doc\": \"DOC56789\",\n        \"record_page\": \"PG123\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"f0c864cc-e424-498f-b14c-347c8e547b2c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/nod?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","nod"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"21a8038f-b652-4d56-8ba9-78bd5a89b89b","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/nod?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","nod"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1dcace9a-d8aa-4ae0-bf3a-fb8bcdf08d30","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/nod?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","nod"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"6ebea5a6-6a15-446a-84f7-2bbe03d11559"},{"name":"Owner Occupied","id":"b1da902d-d466-44ee-bce7-3d55a2419e34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/owner_occupied?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Determine owner-occupancy status, informing potential rental opportunities and neighborhood compositions. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>owner_occupied</td><td>boolean</td><td>Whether the property address matches the mailing address for associated property taxes</td><td>true</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","owner_occupied"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"075f664c-d355-48af-b02a-e86088763b3f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/owner_occupied?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","owner_occupied"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/owner_occupied\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"owner_occupied\": true\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/owner_occupied\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"owner_occupied\": true\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"0a3112b5-7aef-44a3-9603-645554658c90","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/owner_occupied?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","owner_occupied"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"dbe06ab2-53c8-4deb-9f21-f7f496ac9e28","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/owner_occupied?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","owner_occupied"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"adb9098d-dc0d-4544-829b-54a5f03be934","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/owner_occupied?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","owner_occupied"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b1da902d-d466-44ee-bce7-3d55a2419e34"},{"name":"Owner Occupied (Batch)","id":"775152f0-0393-4add-af98-9f2307033037","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/owner_occupied","description":"<p>Determine owner-occupancy status, informing potential rental opportunities and neighborhood compositions. </p>\n<p>Source: HouseCanary, Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>owner_occupied</td><td>boolean</td><td>Whether the property address matches the mailing address for associated property taxes</td><td>true</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","owner_occupied"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"8a1661c9-3869-4a80-99c6-e92c195d9773","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/owner_occupied"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/owner_occupied\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"owner_occupied\": true\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/owner_occupied\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"owner_occupied\": true\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"23189f57-43e4-4878-87a4-8c3a3248d526","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/owner_occupied"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"90aad05d-381f-4b09-bcec-f9b8878ffe44","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/owner_occupied"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"3a155170-33f1-422a-9c90-84231d77e50c","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/owner_occupied"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"775152f0-0393-4add-af98-9f2307033037"},{"name":"Rental Value Forecast","id":"79b393f8-d556-4949-a1d9-4a25b90a5629","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/rental_value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>HouseCanary's 1-year rental value forecasts, supporting rental market outlooks and investment planning.</p>\n<p>Fields include forecast % growth (decline) at 3, 6, and 12 month intervals into the future. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>month_03</td><td>object</td><td>Forecasted rental value information for 3 months with ZIP level Rental Price Index</td><td></td>\n        </tr>\n<tr><td>month_03.value</td><td>integer</td><td>HouseCanary forecasted rental value within the 3 month time-period</td><td>2200</td>\n        </tr>\n<tr><td>month_06</td><td>object</td><td>Forecasted rental value information for 6 months with ZIP level Rental Price Index</td><td></td>\n        </tr>\n<tr><td>month_06.value</td><td>integer</td><td>HouseCanary forecasted rental value within the 6 month time-period</td><td>2300</td>\n        </tr>\n<tr><td>month_12</td><td>object</td><td>Forecasted rental value information for 12 months with ZIP level Rental Price Index</td><td></td>\n        </tr>\n<tr><td>month_12.value</td><td>integer</td><td>HouseCanary forecasted rental value within the 12 month time-period</td><td>2400</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","rental_value_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"875c717b-8f7e-40e9-95df-c9fb30679b47","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/rental_value_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"month_03\": {\n          \"value\": 2200\n        },\n        \"month_06\": {\n          \"value\": 2300\n        },\n        \"month_12\": {\n          \"value\": 2400\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/rental_value_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"month_03\": {\n          \"value\": 2200\n        },\n        \"month_06\": {\n          \"value\": 2300\n        },\n        \"month_12\": {\n          \"value\": 2400\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"e424beee-7247-466f-aed8-a8c263125c33","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"40d10eb8-8e08-49fc-a599-29f9b7109092","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"d5dfba93-b8d8-44f3-b6ef-7eb8cfa0df46","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"79b393f8-d556-4949-a1d9-4a25b90a5629"},{"name":"Rental Value Forecast (Batch)","id":"f304b6e6-9459-4c09-9248-555c1a4b4b2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value_forecast","description":"<p>HouseCanary's 1-year rental value forecasts, supporting rental market outlooks and investment planning.</p>\n<p>Fields include forecast % growth (decline) at 3, 6, and 12 month intervals into the future. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>month_03</td><td>object</td><td>Forecasted rental value information for 3 months with ZIP level Rental Price Index</td><td></td>\n        </tr>\n<tr><td>month_03.value</td><td>integer</td><td>HouseCanary forecasted rental value within the 3 month time-period</td><td>2200</td>\n        </tr>\n<tr><td>month_06</td><td>object</td><td>Forecasted rental value information for 6 months with ZIP level Rental Price Index</td><td></td>\n        </tr>\n<tr><td>month_06.value</td><td>integer</td><td>HouseCanary forecasted rental value within the 6 month time-period</td><td>2300</td>\n        </tr>\n<tr><td>month_12</td><td>object</td><td>Forecasted rental value information for 12 months with ZIP level Rental Price Index</td><td></td>\n        </tr>\n<tr><td>month_12.value</td><td>integer</td><td>HouseCanary forecasted rental value within the 12 month time-period</td><td>2400</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","rental_value_forecast"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"fa19b2ab-076a-4bb6-b631-e468fb7f1445","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value_forecast"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/rental_value_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"month_03\": {\n          \"value\": 2200\n        },\n        \"month_06\": {\n          \"value\": 2300\n        },\n        \"month_12\": {\n          \"value\": 2400\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/rental_value_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"month_03\": {\n          \"value\": 2200\n        },\n        \"month_06\": {\n          \"value\": 2300\n        },\n        \"month_12\": {\n          \"value\": 2400\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"6eccd35c-6432-419d-ac66-e72bf302ddb1","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value_forecast"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"180b2f68-bad8-497c-92a2-7395d3e7ffca","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value_forecast"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"df859a96-6dbe-4201-b0b7-483934cd8bfb","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value_forecast"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f304b6e6-9459-4c09-9248-555c1a4b4b2d"},{"name":"Rental Value Distribution","id":"682bf108-b2f6-41a7-8b10-aada9c5646bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/rental_value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=3500&client_value_sqft=3","description":"<p>Compare a property's rental value and value per sq ft within its block, useful for local market positioning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n<tr><td>client_value</td><td>integer</td><td>Dollar value supplied by the caller, to position within the distribution of rental property values within the block.</td><td>3500</td>\n        </tr>\n<tr><td>client_value_sqft</td><td>integer</td><td>Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.</td><td>3</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property. Defaults to SFD. One of [SFD, TH,CND, INC, MFH]</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>housecanary_value_percentile_range</td><td>object</td><td>Percentile range information for the HouseCanary rental value</td><td></td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.low</td><td>integer</td><td>Low percentile of the range</td><td>12</td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.high</td><td>integer</td><td>High percentile of the range</td><td>38</td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.name</td><td>string</td><td>Name of the range</td><td>housecanary_value_...</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range</td><td>object</td><td>Percentile range information for the HouseCanary rental value per square foot</td><td></td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.low</td><td>integer</td><td>Low percentile of the range</td><td>12</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.high</td><td>integer</td><td>High percentile of the range</td><td>38</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.name</td><td>string</td><td>Name of the range</td><td>housecanary_value_...</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range</td><td>object</td><td>Percentile range information for the client-provided rental value</td><td></td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.low</td><td>integer</td><td>Low percentile of the range</td><td>12</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.high</td><td>integer</td><td>High percentile of the range</td><td>38</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.name</td><td>string</td><td>Name of the range</td><td>housecanary_value_...</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range</td><td>object</td><td>Percentile range information for the client-provided rental value per square foot</td><td></td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.low</td><td>integer</td><td>Low percentile of the range</td><td>12</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.high</td><td>integer</td><td>High percentile of the range</td><td>38</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.name</td><td>string</td><td>Name of the range</td><td>housecanary_value_...</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","rental_value_within_block"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Dollar value supplied by the caller, to position within the distribution of rental property values within the block.</p>\n","type":"text/plain"},"key":"client_value","value":"3500"},{"description":{"content":"<p>Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.</p>\n","type":"text/plain"},"key":"client_value_sqft","value":"3"}],"variable":[]}},"response":[{"id":"c960f15f-fcbf-4f05-8c6a-62579a7f737a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=3500&client_value_sqft=3","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_within_block"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Dollar value supplied by the caller, to position within the distribution of rental property values within the block.","key":"client_value","value":"3500"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.","key":"client_value_sqft","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/rental_value_within_block\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"SFD\",\n        \"housecanary_value_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"housecanary_value_sqft_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"client_value_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"client_value_sqft_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/rental_value_within_block\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"SFD\",\n        \"housecanary_value_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"housecanary_value_sqft_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"client_value_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"client_value_sqft_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"4505e631-5fbb-4702-9409-733c88de3ae1","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=3500&client_value_sqft=3","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_within_block"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Dollar value supplied by the caller, to position within the distribution of rental property values within the block.","key":"client_value","value":"3500"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.","key":"client_value_sqft","value":"3"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"31ba9fec-3a3a-4526-be21-bba660baf4fd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=3500&client_value_sqft=3","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_within_block"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Dollar value supplied by the caller, to position within the distribution of rental property values within the block.","key":"client_value","value":"3500"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.","key":"client_value_sqft","value":"3"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9b14f81b-53e5-413b-8e77-21bf7b7f59f8","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=3500&client_value_sqft=3","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_within_block"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Dollar value supplied by the caller, to position within the distribution of rental property values within the block.","key":"client_value","value":"3500"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.","key":"client_value_sqft","value":"3"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"682bf108-b2f6-41a7-8b10-aada9c5646bf"},{"name":"Rental Value Distribution (Batch)","id":"a0d08b45-c40d-4891-aeba-d7773142b078","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value_within_block?client_value=3500&client_value_sqft=3","description":"<p>Compare a property's rental value and value per sq ft within its block, useful for local market positioning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>client_value</td><td>integer</td><td>Dollar value supplied by the caller, to position within the distribution of rental property values within the block.</td><td>3500</td>\n        </tr>\n<tr><td>client_value_sqft</td><td>integer</td><td>Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.</td><td>3</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property. Defaults to SFD. One of [SFD, TH,CND, INC, MFH]</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>housecanary_value_percentile_range</td><td>object</td><td>Percentile range information for the HouseCanary rental value</td><td></td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.low</td><td>integer</td><td>Low percentile of the range</td><td>12</td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.high</td><td>integer</td><td>High percentile of the range</td><td>38</td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.name</td><td>string</td><td>Name of the range</td><td>housecanary_value_...</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range</td><td>object</td><td>Percentile range information for the HouseCanary rental value per square foot</td><td></td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.low</td><td>integer</td><td>Low percentile of the range</td><td>12</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.high</td><td>integer</td><td>High percentile of the range</td><td>38</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.name</td><td>string</td><td>Name of the range</td><td>housecanary_value_...</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range</td><td>object</td><td>Percentile range information for the client-provided rental value</td><td></td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.low</td><td>integer</td><td>Low percentile of the range</td><td>12</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.high</td><td>integer</td><td>High percentile of the range</td><td>38</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.name</td><td>string</td><td>Name of the range</td><td>housecanary_value_...</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range</td><td>object</td><td>Percentile range information for the client-provided rental value per square foot</td><td></td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.low</td><td>integer</td><td>Low percentile of the range</td><td>12</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.high</td><td>integer</td><td>High percentile of the range</td><td>38</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.name</td><td>string</td><td>Name of the range</td><td>housecanary_value_...</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","rental_value_within_block"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Dollar value supplied by the caller, to position within the distribution of rental property values within the block.</p>\n","type":"text/plain"},"key":"client_value","value":"3500"},{"description":{"content":"<p>Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.</p>\n","type":"text/plain"},"key":"client_value_sqft","value":"3"}],"variable":[]}},"response":[{"id":"34437ca4-cb61-4b2c-b445-b1cb56dd4026","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_within_block?client_value=3500&client_value_sqft=3","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_within_block"],"query":[{"description":"Dollar value supplied by the caller, to position within the distribution of rental property values within the block.","key":"client_value","value":"3500"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.","key":"client_value_sqft","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/rental_value_within_block\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"SFD\",\n        \"housecanary_value_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"housecanary_value_sqft_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"client_value_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"client_value_sqft_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/rental_value_within_block\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"SFD\",\n        \"housecanary_value_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"housecanary_value_sqft_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"client_value_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        },\n        \"client_value_sqft_percentile_range\": {\n          \"low\": 12,\n          \"high\": 38,\n          \"name\": \"housecanary_value_...\"\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"ed2d20e0-f634-46ce-a503-48521b686c67","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_within_block?client_value=3500&client_value_sqft=3","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_within_block"],"query":[{"description":"Dollar value supplied by the caller, to position within the distribution of rental property values within the block.","key":"client_value","value":"3500"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.","key":"client_value_sqft","value":"3"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"8a319c17-c54f-41c8-8af3-eb5f9e0db3a0","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_within_block?client_value=3500&client_value_sqft=3","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_within_block"],"query":[{"description":"Dollar value supplied by the caller, to position within the distribution of rental property values within the block.","key":"client_value","value":"3500"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.","key":"client_value_sqft","value":"3"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"92f160e6-8320-488b-9d7e-50421ec931e9","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/rental_value_within_block?client_value=3500&client_value_sqft=3","host":["https://api.housecanary.com"],"path":["v2","property","rental_value_within_block"],"query":[{"description":"Dollar value supplied by the caller, to position within the distribution of rental property values within the block.","key":"client_value","value":"3500"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of rental property values per sq ft within the block.","key":"client_value_sqft","value":"3"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a0d08b45-c40d-4891-aeba-d7773142b078"},{"name":"Rental Value","id":"fbd3f4d4-7513-4176-8be1-6ecec288cbba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/rental_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>HouseCanary's flagship automated rental value estimate, essential for rental pricing strategies and market analysis.</p>\n<p>HouseCanary's proprietary Automated Rental Valuation Model utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market rent of a residential property. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>price_mean</td><td>integer</td><td>HouseCanary automated monthly rental value. Created using a robust model ensemble methodology.</td><td>1800</td>\n        </tr>\n<tr><td>price_upr</td><td>integer</td><td>HouseCanary rental AVM upper bound. Calculated as price_mean * (1 + fsd)</td><td>1850</td>\n        </tr>\n<tr><td>price_lwr</td><td>integer</td><td>HouseCanary rental AVM lower bound. Calculated as price_mean * (1 - fsd)</td><td>1750</td>\n        </tr>\n<tr><td>fsd</td><td>number</td><td>HouseCanary forecast standard deviation for the HouseCanary rental AVM</td><td>0.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","rental_value"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"92bccde1-5fd9-4b70-90dc-da75d80cbc7e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","rental_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/rental_value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"price_mean\": 1800,\n        \"price_upr\": 1850,\n        \"price_lwr\": 1750,\n        \"fsd\": 0.08\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/rental_value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"price_mean\": 1800,\n        \"price_upr\": 1850,\n        \"price_lwr\": 1750,\n        \"fsd\": 0.08\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"673e3e8a-d0e2-4d2b-83ce-7d6364aa91ab","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","rental_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ae2b4f77-ef22-4609-829f-df5d9fd51568","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","rental_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1b7c718b-11f7-4939-b681-4bb77cf11d56","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/rental_value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","rental_value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"fbd3f4d4-7513-4176-8be1-6ecec288cbba"},{"name":"Rental Value (Batch)","id":"0d3fa82d-6ef4-430b-a7d9-a05e3a4716ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value","description":"<p>HouseCanary's flagship automated rental value estimate, essential for rental pricing strategies and market analysis.</p>\n<p>HouseCanary's proprietary Automated Rental Valuation Model utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market rent of a residential property. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>price_mean</td><td>integer</td><td>HouseCanary automated monthly rental value. Created using a robust model ensemble methodology.</td><td>1800</td>\n        </tr>\n<tr><td>price_upr</td><td>integer</td><td>HouseCanary rental AVM upper bound. Calculated as price_mean * (1 + fsd)</td><td>1850</td>\n        </tr>\n<tr><td>price_lwr</td><td>integer</td><td>HouseCanary rental AVM lower bound. Calculated as price_mean * (1 - fsd)</td><td>1750</td>\n        </tr>\n<tr><td>fsd</td><td>number</td><td>HouseCanary forecast standard deviation for the HouseCanary rental AVM</td><td>0.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","rental_value"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"9c5de83e-cbcb-4b97-85f9-1f68d961e4f8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/rental_value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"price_mean\": 1800,\n        \"price_upr\": 1850,\n        \"price_lwr\": 1750,\n        \"fsd\": 0.08\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/rental_value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"price_mean\": 1800,\n        \"price_upr\": 1850,\n        \"price_lwr\": 1750,\n        \"fsd\": 0.08\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"78ea5543-3836-40a4-a3d8-eb828bbc9ac7","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d50c1530-94b1-4387-be16-7e31787ea2dd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e4122ee2-30ac-4742-b405-cc746c2a4dca","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/rental_value"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0d3fa82d-6ef4-430b-a7d9-a05e3a4716ab"},{"name":"Sales History","id":"435dfd66-3dcd-4021-9d60-f250a47de2a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/sales_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Examine a property's sales and ownership transfer history for trends, transaction patterns, and investment insights. </p>\n<p>Source: Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].amount</td><td>integer</td><td>Amount in dollars that the property sold for</td><td>350000</td>\n        </tr>\n<tr><td>[].apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>123456789</td>\n        </tr>\n<tr><td>[].event_type</td><td>string</td><td>Type of sale</td><td>Sale</td>\n        </tr>\n<tr><td>[].fips</td><td>string</td><td>5-digit Federal Information Processing Standards county code</td><td>06001</td>\n        </tr>\n<tr><td>[].grantee_1</td><td>string</td><td>Last name of first person listed on deed</td><td>Smith</td>\n        </tr>\n<tr><td>[].grantee_1_forenames</td><td>string</td><td>First name of first person listed on deed</td><td>John</td>\n        </tr>\n<tr><td>[].grantee_2</td><td>string</td><td>Last name of second person listed on deed</td><td>Johnson</td>\n        </tr>\n<tr><td>[].grantee_2_forenames</td><td>string</td><td>First name of second person listed on deed</td><td>Jane</td>\n        </tr>\n<tr><td>[].grantor_1</td><td>string</td><td>Name of the primary financier of the deed</td><td>Bank of Example</td>\n        </tr>\n<tr><td>[].grantor_2</td><td>string</td><td>Name of the secondary financier of the deed</td><td>Mortgage Corp</td>\n        </tr>\n<tr><td>[].record_book</td><td>string</td><td>Record book number for the recorded deed. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>12345</td>\n        </tr>\n<tr><td>[].record_date</td><td>string</td><td>Date of lien origination</td><td>2023-08-10</td>\n        </tr>\n<tr><td>[].record_doc</td><td>string</td><td>The assessor's document number for this lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>987654</td>\n        </tr>\n<tr><td>[].record_page</td><td>string</td><td>Record page of the lien in the county recorder. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>789</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","sales_history"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"affe18e3-4a38-4f89-a61c-3f2461d83313","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/sales_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","sales_history"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/sales_history\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 350000,\n          \"apn\": \"123456789\",\n          \"event_type\": \"Sale\",\n          \"fips\": \"06001\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"Bank of Example\",\n          \"grantor_2\": \"Mortgage Corp\",\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-08-10\",\n          \"record_doc\": \"987654\",\n          \"record_page\": \"789\"\n        },\n        {\n          \"amount\": 350000,\n          \"apn\": \"123456789\",\n          \"event_type\": \"Sale\",\n          \"fips\": \"06001\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"Bank of Example\",\n          \"grantor_2\": \"Mortgage Corp\",\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-08-10\",\n          \"record_doc\": \"987654\",\n          \"record_page\": \"789\"\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/sales_history\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 350000,\n          \"apn\": \"123456789\",\n          \"event_type\": \"Sale\",\n          \"fips\": \"06001\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"Bank of Example\",\n          \"grantor_2\": \"Mortgage Corp\",\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-08-10\",\n          \"record_doc\": \"987654\",\n          \"record_page\": \"789\"\n        },\n        {\n          \"amount\": 350000,\n          \"apn\": \"123456789\",\n          \"event_type\": \"Sale\",\n          \"fips\": \"06001\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"Bank of Example\",\n          \"grantor_2\": \"Mortgage Corp\",\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-08-10\",\n          \"record_doc\": \"987654\",\n          \"record_page\": \"789\"\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"334d8bb4-1793-4a4c-aa21-da916445dbf7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/sales_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","sales_history"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f9bef6d5-298a-4196-89e1-f5c3065286da","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/sales_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","sales_history"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"15a4e205-eee2-4e10-b10c-9d83fb7f3764","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/sales_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","sales_history"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"435dfd66-3dcd-4021-9d60-f250a47de2a3"},{"name":"Sales History (Batch)","id":"467aea4f-650b-4d26-9e3c-ab19df07e58b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/sales_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Examine a property's sales and ownership transfer history for trends, transaction patterns, and investment insights. </p>\n<p>Source: Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Daily</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].amount</td><td>integer</td><td>Amount in dollars that the property sold for</td><td>350000</td>\n        </tr>\n<tr><td>[].apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>123456789</td>\n        </tr>\n<tr><td>[].event_type</td><td>string</td><td>Type of sale</td><td>Sale</td>\n        </tr>\n<tr><td>[].fips</td><td>string</td><td>5-digit Federal Information Processing Standards county code</td><td>06001</td>\n        </tr>\n<tr><td>[].grantee_1</td><td>string</td><td>Last name of first person listed on deed</td><td>Smith</td>\n        </tr>\n<tr><td>[].grantee_1_forenames</td><td>string</td><td>First name of first person listed on deed</td><td>John</td>\n        </tr>\n<tr><td>[].grantee_2</td><td>string</td><td>Last name of second person listed on deed</td><td>Johnson</td>\n        </tr>\n<tr><td>[].grantee_2_forenames</td><td>string</td><td>First name of second person listed on deed</td><td>Jane</td>\n        </tr>\n<tr><td>[].grantor_1</td><td>string</td><td>Name of the primary financier of the deed</td><td>Bank of Example</td>\n        </tr>\n<tr><td>[].grantor_2</td><td>string</td><td>Name of the secondary financier of the deed</td><td>Mortgage Corp</td>\n        </tr>\n<tr><td>[].record_book</td><td>string</td><td>Record book number for the recorded deed. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>12345</td>\n        </tr>\n<tr><td>[].record_date</td><td>string</td><td>Date of lien origination</td><td>2023-08-10</td>\n        </tr>\n<tr><td>[].record_doc</td><td>string</td><td>The assessor's document number for this lien. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>987654</td>\n        </tr>\n<tr><td>[].record_page</td><td>string</td><td>Record page of the lien in the county recorder. A unique transaction in many counties may be defined in the recorder's books by a unique: record_book, record_page, record_doc.</td><td>789</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","sales_history"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"ea47e9d5-8485-4fc3-99dd-57eaf10a3089","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/sales_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","sales_history"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/sales_history\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 350000,\n          \"apn\": \"123456789\",\n          \"event_type\": \"Sale\",\n          \"fips\": \"06001\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"Bank of Example\",\n          \"grantor_2\": \"Mortgage Corp\",\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-08-10\",\n          \"record_doc\": \"987654\",\n          \"record_page\": \"789\"\n        },\n        {\n          \"amount\": 350000,\n          \"apn\": \"123456789\",\n          \"event_type\": \"Sale\",\n          \"fips\": \"06001\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"Bank of Example\",\n          \"grantor_2\": \"Mortgage Corp\",\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-08-10\",\n          \"record_doc\": \"987654\",\n          \"record_page\": \"789\"\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/sales_history\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": [\n        {\n          \"amount\": 350000,\n          \"apn\": \"123456789\",\n          \"event_type\": \"Sale\",\n          \"fips\": \"06001\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"Bank of Example\",\n          \"grantor_2\": \"Mortgage Corp\",\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-08-10\",\n          \"record_doc\": \"987654\",\n          \"record_page\": \"789\"\n        },\n        {\n          \"amount\": 350000,\n          \"apn\": \"123456789\",\n          \"event_type\": \"Sale\",\n          \"fips\": \"06001\",\n          \"grantee_1\": \"Smith\",\n          \"grantee_1_forenames\": \"John\",\n          \"grantee_2\": \"Johnson\",\n          \"grantee_2_forenames\": \"Jane\",\n          \"grantor_1\": \"Bank of Example\",\n          \"grantor_2\": \"Mortgage Corp\",\n          \"record_book\": \"12345\",\n          \"record_date\": \"2023-08-10\",\n          \"record_doc\": \"987654\",\n          \"record_page\": \"789\"\n        }\n      ]\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"5a97b4ae-c0d2-4f79-ae3d-097ae02a39fc","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/sales_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","sales_history"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0479759e-a36d-499c-8c1b-bb9eccea74fe","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/sales_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","sales_history"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"fe340ed1-e9be-4525-99bb-7bbf0b0fc26f","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/sales_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","sales_history"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on record_date, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"467aea4f-650b-4d26-9e3c-ab19df07e58b"},{"name":"School Information","id":"e9195df3-72a6-4f2b-ac07-2f289908e3ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/school?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Obtain details on nearby schools for properties, valuable for assessing neighborhood quality. </p>\n<p>Source: HouseCanary calculation, State standard school testing </p>\n<p>Pricing Tier: Basic </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>school</td><td>object</td><td>Level of school. One of [`elementary`, `middle`, `high`]</td><td></td>\n        <td></td></tr>\n<tr><td>school.elementary</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.elementary[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.elementary[].city</td><td>string</td><td>School city</td><td>Springfield</td>\n        <td></td></tr>\n<tr><td>school.elementary[].state</td><td>string</td><td>School state</td><td>IL</td>\n        <td></td></tr>\n<tr><td>school.elementary[].verified_school_boundaries</td><td>boolean</td><td>True if school boundaries could be verified, false otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>school.elementary[].name</td><td>string</td><td>School name</td><td>Springfield Elementary School</td>\n        <td></td></tr>\n<tr><td>school.elementary[].zipcode</td><td>string</td><td>School ZIP code</td><td>12345</td>\n        <td></td></tr>\n<tr><td>school.elementary[].phone</td><td>string</td><td>School phone number</td><td>555-123-4567</td>\n        <td></td></tr>\n<tr><td>school.elementary[].score</td><td>number</td><td>Overall school ranking as a percentile within schools in the state</td><td>85.6</td>\n        <td></td></tr>\n<tr><td>school.elementary[].education_level</td><td>array</td><td>List of all education levels incorporated by the school. Any combination of [elementary, middle, high]</td><td><pre>[\n  \"elementary\",\n  \"middle\"\n]</pre></td>\n        <td></td></tr>\n<tr><td>school.elementary[].education_level[]</td><td>string</td><td></td><td></td>\n        <td>[elementary, middle, high]</td></tr>\n<tr><td>school.elementary[].address</td><td>string</td><td>School address</td><td>123 Main Street</td>\n        <td></td></tr>\n<tr><td>school.elementary[].assessment_year</td><td>integer</td><td>Year of the school's last assessment by the state. Null if not available</td><td>2022</td>\n        <td></td></tr>\n<tr><td>school.middle</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.middle[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.middle[].city</td><td>string</td><td>School city</td><td>Springfield</td>\n        <td></td></tr>\n<tr><td>school.middle[].state</td><td>string</td><td>School state</td><td>IL</td>\n        <td></td></tr>\n<tr><td>school.middle[].verified_school_boundaries</td><td>boolean</td><td>True if school boundaries could be verified, false otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>school.middle[].name</td><td>string</td><td>School name</td><td>Springfield Elementary School</td>\n        <td></td></tr>\n<tr><td>school.middle[].zipcode</td><td>string</td><td>School ZIP code</td><td>12345</td>\n        <td></td></tr>\n<tr><td>school.middle[].phone</td><td>string</td><td>School phone number</td><td>555-123-4567</td>\n        <td></td></tr>\n<tr><td>school.middle[].score</td><td>number</td><td>Overall school ranking as a percentile within schools in the state</td><td>85.6</td>\n        <td></td></tr>\n<tr><td>school.middle[].education_level</td><td>array</td><td>List of all education levels incorporated by the school. Any combination of [elementary, middle, high]</td><td><pre>[\n  \"elementary\",\n  \"middle\"\n]</pre></td>\n        <td></td></tr>\n<tr><td>school.middle[].education_level[]</td><td>string</td><td></td><td></td>\n        <td>[elementary, middle, high]</td></tr>\n<tr><td>school.middle[].address</td><td>string</td><td>School address</td><td>123 Main Street</td>\n        <td></td></tr>\n<tr><td>school.middle[].assessment_year</td><td>integer</td><td>Year of the school's last assessment by the state. Null if not available</td><td>2022</td>\n        <td></td></tr>\n<tr><td>school.high</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.high[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.high[].city</td><td>string</td><td>School city</td><td>Springfield</td>\n        <td></td></tr>\n<tr><td>school.high[].state</td><td>string</td><td>School state</td><td>IL</td>\n        <td></td></tr>\n<tr><td>school.high[].verified_school_boundaries</td><td>boolean</td><td>True if school boundaries could be verified, false otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>school.high[].name</td><td>string</td><td>School name</td><td>Springfield Elementary School</td>\n        <td></td></tr>\n<tr><td>school.high[].zipcode</td><td>string</td><td>School ZIP code</td><td>12345</td>\n        <td></td></tr>\n<tr><td>school.high[].phone</td><td>string</td><td>School phone number</td><td>555-123-4567</td>\n        <td></td></tr>\n<tr><td>school.high[].score</td><td>number</td><td>Overall school ranking as a percentile within schools in the state</td><td>85.6</td>\n        <td></td></tr>\n<tr><td>school.high[].education_level</td><td>array</td><td>List of all education levels incorporated by the school. Any combination of [elementary, middle, high]</td><td><pre>[\n  \"elementary\",\n  \"middle\"\n]</pre></td>\n        <td></td></tr>\n<tr><td>school.high[].education_level[]</td><td>string</td><td></td><td></td>\n        <td>[elementary, middle, high]</td></tr>\n<tr><td>school.high[].address</td><td>string</td><td>School address</td><td>123 Main Street</td>\n        <td></td></tr>\n<tr><td>school.high[].assessment_year</td><td>integer</td><td>Year of the school's last assessment by the state. Null if not available</td><td>2022</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","school"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"8d98955e-944c-4a6f-9cd5-d027bc662d4d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/school?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","school"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/school\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"school\": {\n          \"elementary\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ],\n          \"middle\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ],\n          \"high\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ]\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/school\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"school\": {\n          \"elementary\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ],\n          \"middle\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ],\n          \"high\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ]\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"c3cf4869-ec0d-48a0-bfbb-344e856a0416","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/school?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","school"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"54d1bd7b-c553-444b-a11b-7d779a9170e5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/school?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","school"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ff2cde91-cd74-4fe6-8f05-77bb3287949d","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/school?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","school"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e9195df3-72a6-4f2b-ac07-2f289908e3ef"},{"name":"School Information (Batch)","id":"14a61fb2-4b52-456b-b6f3-a530e7fc8d4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/school","description":"<p>Obtain details on nearby schools for properties, valuable for assessing neighborhood quality. </p>\n<p>Source: HouseCanary calculation, State standard school testing </p>\n<p>Pricing Tier: Basic </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>school</td><td>object</td><td>Level of school. One of [`elementary`, `middle`, `high`]</td><td></td>\n        <td></td></tr>\n<tr><td>school.elementary</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.elementary[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.elementary[].city</td><td>string</td><td>School city</td><td>Springfield</td>\n        <td></td></tr>\n<tr><td>school.elementary[].state</td><td>string</td><td>School state</td><td>IL</td>\n        <td></td></tr>\n<tr><td>school.elementary[].verified_school_boundaries</td><td>boolean</td><td>True if school boundaries could be verified, false otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>school.elementary[].name</td><td>string</td><td>School name</td><td>Springfield Elementary School</td>\n        <td></td></tr>\n<tr><td>school.elementary[].zipcode</td><td>string</td><td>School ZIP code</td><td>12345</td>\n        <td></td></tr>\n<tr><td>school.elementary[].phone</td><td>string</td><td>School phone number</td><td>555-123-4567</td>\n        <td></td></tr>\n<tr><td>school.elementary[].score</td><td>number</td><td>Overall school ranking as a percentile within schools in the state</td><td>85.6</td>\n        <td></td></tr>\n<tr><td>school.elementary[].education_level</td><td>array</td><td>List of all education levels incorporated by the school. Any combination of [elementary, middle, high]</td><td><pre>[\n  \"elementary\",\n  \"middle\"\n]</pre></td>\n        <td></td></tr>\n<tr><td>school.elementary[].education_level[]</td><td>string</td><td></td><td></td>\n        <td>[elementary, middle, high]</td></tr>\n<tr><td>school.elementary[].address</td><td>string</td><td>School address</td><td>123 Main Street</td>\n        <td></td></tr>\n<tr><td>school.elementary[].assessment_year</td><td>integer</td><td>Year of the school's last assessment by the state. Null if not available</td><td>2022</td>\n        <td></td></tr>\n<tr><td>school.middle</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.middle[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.middle[].city</td><td>string</td><td>School city</td><td>Springfield</td>\n        <td></td></tr>\n<tr><td>school.middle[].state</td><td>string</td><td>School state</td><td>IL</td>\n        <td></td></tr>\n<tr><td>school.middle[].verified_school_boundaries</td><td>boolean</td><td>True if school boundaries could be verified, false otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>school.middle[].name</td><td>string</td><td>School name</td><td>Springfield Elementary School</td>\n        <td></td></tr>\n<tr><td>school.middle[].zipcode</td><td>string</td><td>School ZIP code</td><td>12345</td>\n        <td></td></tr>\n<tr><td>school.middle[].phone</td><td>string</td><td>School phone number</td><td>555-123-4567</td>\n        <td></td></tr>\n<tr><td>school.middle[].score</td><td>number</td><td>Overall school ranking as a percentile within schools in the state</td><td>85.6</td>\n        <td></td></tr>\n<tr><td>school.middle[].education_level</td><td>array</td><td>List of all education levels incorporated by the school. Any combination of [elementary, middle, high]</td><td><pre>[\n  \"elementary\",\n  \"middle\"\n]</pre></td>\n        <td></td></tr>\n<tr><td>school.middle[].education_level[]</td><td>string</td><td></td><td></td>\n        <td>[elementary, middle, high]</td></tr>\n<tr><td>school.middle[].address</td><td>string</td><td>School address</td><td>123 Main Street</td>\n        <td></td></tr>\n<tr><td>school.middle[].assessment_year</td><td>integer</td><td>Year of the school's last assessment by the state. Null if not available</td><td>2022</td>\n        <td></td></tr>\n<tr><td>school.high</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.high[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>school.high[].city</td><td>string</td><td>School city</td><td>Springfield</td>\n        <td></td></tr>\n<tr><td>school.high[].state</td><td>string</td><td>School state</td><td>IL</td>\n        <td></td></tr>\n<tr><td>school.high[].verified_school_boundaries</td><td>boolean</td><td>True if school boundaries could be verified, false otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>school.high[].name</td><td>string</td><td>School name</td><td>Springfield Elementary School</td>\n        <td></td></tr>\n<tr><td>school.high[].zipcode</td><td>string</td><td>School ZIP code</td><td>12345</td>\n        <td></td></tr>\n<tr><td>school.high[].phone</td><td>string</td><td>School phone number</td><td>555-123-4567</td>\n        <td></td></tr>\n<tr><td>school.high[].score</td><td>number</td><td>Overall school ranking as a percentile within schools in the state</td><td>85.6</td>\n        <td></td></tr>\n<tr><td>school.high[].education_level</td><td>array</td><td>List of all education levels incorporated by the school. Any combination of [elementary, middle, high]</td><td><pre>[\n  \"elementary\",\n  \"middle\"\n]</pre></td>\n        <td></td></tr>\n<tr><td>school.high[].education_level[]</td><td>string</td><td></td><td></td>\n        <td>[elementary, middle, high]</td></tr>\n<tr><td>school.high[].address</td><td>string</td><td>School address</td><td>123 Main Street</td>\n        <td></td></tr>\n<tr><td>school.high[].assessment_year</td><td>integer</td><td>Year of the school's last assessment by the state. Null if not available</td><td>2022</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","school"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"25c000be-6470-410c-9f50-cc28cad10d51","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/school"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/school\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"school\": {\n          \"elementary\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ],\n          \"middle\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ],\n          \"high\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ]\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/school\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"school\": {\n          \"elementary\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ],\n          \"middle\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ],\n          \"high\": [\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            },\n            {\n              \"city\": \"Springfield\",\n              \"state\": \"IL\",\n              \"verified_school_boundaries\": true,\n              \"name\": \"Springfield Elementary School\",\n              \"zipcode\": \"12345\",\n              \"phone\": \"555-123-4567\",\n              \"score\": 85.6,\n              \"education_level\": [\n                \"elementary\",\n                \"middle\"\n              ],\n              \"address\": \"123 Main Street\",\n              \"assessment_year\": 2022\n            }\n          ]\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"f10f3b9f-7a5d-40b6-a062-65610a394222","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/school"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e765e485-2854-4aa7-a57b-7c473acc7870","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/school"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"55e359e5-4a95-47cb-a7db-cd9b81eb77eb","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/school"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"14a61fb2-4b52-456b-b6f3-a530e7fc8d4f"},{"name":"Tax History","id":"3c712072-6207-4e4d-a08c-1bb1eccb5ce2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/tax_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review current and historical tax and assessment values, aiding in property valuation and tax planning. </p>\n<p>Source: Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum number of items to return</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>tax_history</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>tax_history[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>tax_history[].apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>123-456-789</td>\n        </tr>\n<tr><td>tax_history[].assessment_year</td><td>integer</td><td>Year the assessment was conducted</td><td>2022</td>\n        </tr>\n<tr><td>tax_history[].tax_amount</td><td>integer</td><td>Amount in dollars of tax owed on the property</td><td>2500</td>\n        </tr>\n<tr><td>tax_history[].tax_year</td><td>integer</td><td>Tax year for which the assessment applies</td><td>2022</td>\n        </tr>\n<tr><td>tax_history[].total_assessed_value</td><td>integer</td><td>The total assessed value of both land and improvements (before exemptions, if any) as reported on the county tax/assessment roll in the indicated year.</td><td>350000</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","tax_history"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum number of items to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"bb0fe4dd-f078-4910-bc7d-8ab732d702d4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/tax_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","tax_history"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/tax_history\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"tax_history\": [\n          {\n            \"apn\": \"123-456-789\",\n            \"assessment_year\": 2022,\n            \"tax_amount\": 2500,\n            \"tax_year\": 2022,\n            \"total_assessed_value\": 350000\n          },\n          {\n            \"apn\": \"123-456-789\",\n            \"assessment_year\": 2022,\n            \"tax_amount\": 2500,\n            \"tax_year\": 2022,\n            \"total_assessed_value\": 350000\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/tax_history\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"tax_history\": [\n          {\n            \"apn\": \"123-456-789\",\n            \"assessment_year\": 2022,\n            \"tax_amount\": 2500,\n            \"tax_year\": 2022,\n            \"total_assessed_value\": 350000\n          },\n          {\n            \"apn\": \"123-456-789\",\n            \"assessment_year\": 2022,\n            \"tax_amount\": 2500,\n            \"tax_year\": 2022,\n            \"total_assessed_value\": 350000\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"3289af6a-8906-4834-af33-92e1f9031005","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/tax_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","tax_history"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d3ac0d08-77e9-46b3-bcf6-890c2376a06c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/tax_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","tax_history"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b34e278f-f8f4-46e5-9a5e-444ef8ca5bcc","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/tax_history?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","tax_history"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"3c712072-6207-4e4d-a08c-1bb1eccb5ce2"},{"name":"Tax History (Batch)","id":"372c2928-55eb-4118-9e23-58756978ca95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/tax_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review current and historical tax and assessment values, aiding in property valuation and tax planning. </p>\n<p>Source: Public Records </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum number of items to return</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>tax_history</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>tax_history[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>tax_history[].apn</td><td>string</td><td>Assessor's Parcel Number or Parcel Identification Number</td><td>123-456-789</td>\n        </tr>\n<tr><td>tax_history[].assessment_year</td><td>integer</td><td>Year the assessment was conducted</td><td>2022</td>\n        </tr>\n<tr><td>tax_history[].tax_amount</td><td>integer</td><td>Amount in dollars of tax owed on the property</td><td>2500</td>\n        </tr>\n<tr><td>tax_history[].tax_year</td><td>integer</td><td>Tax year for which the assessment applies</td><td>2022</td>\n        </tr>\n<tr><td>tax_history[].total_assessed_value</td><td>integer</td><td>The total assessed value of both land and improvements (before exemptions, if any) as reported on the county tax/assessment roll in the indicated year.</td><td>350000</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","tax_history"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum number of items to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"4dab0c63-6c43-4646-b7cc-b2482599d97d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/tax_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","tax_history"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/tax_history\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"tax_history\": [\n          {\n            \"apn\": \"123-456-789\",\n            \"assessment_year\": 2022,\n            \"tax_amount\": 2500,\n            \"tax_year\": 2022,\n            \"total_assessed_value\": 350000\n          },\n          {\n            \"apn\": \"123-456-789\",\n            \"assessment_year\": 2022,\n            \"tax_amount\": 2500,\n            \"tax_year\": 2022,\n            \"total_assessed_value\": 350000\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/tax_history\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"tax_history\": [\n          {\n            \"apn\": \"123-456-789\",\n            \"assessment_year\": 2022,\n            \"tax_amount\": 2500,\n            \"tax_year\": 2022,\n            \"total_assessed_value\": 350000\n          },\n          {\n            \"apn\": \"123-456-789\",\n            \"assessment_year\": 2022,\n            \"tax_amount\": 2500,\n            \"tax_year\": 2022,\n            \"total_assessed_value\": 350000\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b44dd7b9-1e8b-4b5c-ab91-1a8c252efce0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/tax_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","tax_history"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"047bec9e-baf5-4eb3-8f29-88faa476e0d4","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/tax_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","tax_history"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2afbf7f7-c019-401b-afd5-6bb73bc792b5","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/tax_history?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","tax_history"],"query":[{"description":"Chronological order to sort result items","key":"order","value":"asc"},{"description":"Maximum number of items to return","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on tax_year, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"372c2928-55eb-4118-9e23-58756978ca95"},{"name":"Value","id":"c9a4a158-a634-4f91-9aee-557e496796ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>HouseCanary's flagship automated property value estimate.</p>\n<p>HouseCanary's proprietary Automated Valuation Model (AVM) utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market value of a residential property. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>value</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>value.price_mean</td><td>integer</td><td>HouseCanary automated monthly home value. Created using a robust model ensemble methodology.</td><td>325000</td>\n        </tr>\n<tr><td>value.price_upr</td><td>integer</td><td>HouseCanary AVM upper bound. Calculated as price_mean * (1 + fsd)</td><td>340000</td>\n        </tr>\n<tr><td>value.price_lwr</td><td>integer</td><td>HouseCanary AVM lower bound. Calculated as price_mean * (1 - fsd)</td><td>310000</td>\n        </tr>\n<tr><td>value.fsd</td><td>number</td><td>HouseCanary forecast standard deviation for the HouseCanary AVM</td><td>0.05</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"02954a69-7f38-4ac0-891c-b74fc38d6a47","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value\": {\n          \"price_mean\": 325000,\n          \"price_upr\": 340000,\n          \"price_lwr\": 310000,\n          \"fsd\": 0.05\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value\": {\n          \"price_mean\": 325000,\n          \"price_upr\": 340000,\n          \"price_lwr\": 310000,\n          \"fsd\": 0.05\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"f0398b22-13d8-4b3d-b585-01437dae761e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"feb0ab28-29fc-4fb9-8def-2461c6b86ac1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"7a4de28c-467d-438d-a7e5-a0ca6e9423aa","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c9a4a158-a634-4f91-9aee-557e496796ec"},{"name":"Value (Batch)","id":"039e730b-b9ff-4c94-bb70-db016e61f6b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value","description":"<p>HouseCanary's flagship automated property value estimate.</p>\n<p>HouseCanary's proprietary Automated Valuation Model (AVM) utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market value of a residential property. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>value</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>value.price_mean</td><td>integer</td><td>HouseCanary automated monthly home value. Created using a robust model ensemble methodology.</td><td>325000</td>\n        </tr>\n<tr><td>value.price_upr</td><td>integer</td><td>HouseCanary AVM upper bound. Calculated as price_mean * (1 + fsd)</td><td>340000</td>\n        </tr>\n<tr><td>value.price_lwr</td><td>integer</td><td>HouseCanary AVM lower bound. Calculated as price_mean * (1 - fsd)</td><td>310000</td>\n        </tr>\n<tr><td>value.fsd</td><td>number</td><td>HouseCanary forecast standard deviation for the HouseCanary AVM</td><td>0.05</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"97c14ef7-1a9c-4f0e-a812-0707138eea37","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value\": {\n          \"price_mean\": 325000,\n          \"price_upr\": 340000,\n          \"price_lwr\": 310000,\n          \"fsd\": 0.05\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value\": {\n          \"price_mean\": 325000,\n          \"price_upr\": 340000,\n          \"price_lwr\": 310000,\n          \"fsd\": 0.05\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"17db5ec0-7c49-4dfe-be5b-c4fd836e45d0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"8bc09782-94b4-4871-be40-e3bb0344ed80","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"cbb65e2e-1913-4e42-951c-e9fc96f29374","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"039e730b-b9ff-4c94-bb70-db016e61f6b2"},{"name":"Value Analysis","id":"b32ee688-bd58-4ee7-8c8f-4111bcf10e7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/value_analysis?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&street_address=123 Main St San Francisco CA 94132&zipcode=94132&estimated_value=325000&gla_sqft=2750&include_comp_based_analysis=true","description":"<p>Value Analysis provides a set of automated checks to test the feasibility of a property value based on HouseCanary’s data and models. It provides a recommended approach for coming to a high-confidence value for the property. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>A single URL-safe string identifying the address (obtained from HouseCanary)</td><td>1624-E-Dogwood-Ln-Gilbert-AZ-85295</td>\n        </tr>\n<tr><td>street_address</td><td>string</td><td>Building number, street name and unit number</td><td>123 Main St San Francisco CA 94132</td>\n        </tr>\n<tr><td>zipcode</td><td>integer</td><td>5-digit ZIP code</td><td>94132</td>\n        </tr>\n<tr><td>estimated_value</td><td>integer</td><td>Outside estimate of the property’s value, maybe from a BPO or previous appraised value</td><td>325000</td>\n        </tr>\n<tr><td>gla_sqft</td><td>integer</td><td>Gross living area of property in square feet</td><td>2750</td>\n        </tr>\n<tr><td>include_comp_based_analysis</td><td>boolean</td><td>Whether to include comp-based analysis (response may be slower if included)</td><td>true</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>checks</td><td>object</td><td>Preliminary data checks to determine whether HouseCanary can provide an AVM for the property in question</td><td></td>\n        <td></td></tr>\n<tr><td>checks.All pre-analysis checks passed</td><td>boolean</td><td><code>true</code> if all the other checks are <code>true</code>, <code>false</code> otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>checks.Address is supported</td><td>boolean</td><td><code>true</code> if the provided address can be parsed, <code>false</code> otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>checks.Address is complete</td><td>boolean</td><td><code>true</code> if the provided address includes all necessary detail to resolve to a specific residence, <code>false</code> otherwise (most commonly a <code>false</code> value indicates a missing unit number for a multi-unit property address)</td><td>true</td>\n        <td></td></tr>\n<tr><td>checks.Precise geocode is available for address</td><td>boolean</td><td><code>true</code> if HouseCanary has a rooftop accurate geocode for the address, <code>false</code> otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>checks.Property at address is of supported type</td><td>boolean</td><td>Returns <code>true</code> if the property at the specified address is of a supported type; <code>false</code> otherwise.</td><td>true</td>\n        <td></td></tr>\n<tr><td>checks.Census block group information is available</td><td>boolean</td><td><code>true</code> if HouseCanary has blockgroup value distribution data for the blockgroup containing the property,<code>false</code> otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>checks.Enough information on neighborhood characteristics is available</td><td>boolean</td><td>True if HouseCanary has value per square foot data for at least 70% of properties in the blockgroup, False otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>checks.Gross living area of property is available or provided as input</td><td>boolean</td><td>True if HouseCanary has data for the gross living area of the property or it was provided in the request as the gla_sqft value, False otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>checks.Comps available for analysis</td><td>boolean</td><td>True if at least 5 highly similar comparable properties exist, False otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>input_params</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>input_params.slug</td><td>string</td><td>A single URL-safe string identifying the address (obtained from HouseCanary)</td><td>1624-E-Dogwood-Ln-Gilbert-AZ-85295</td>\n        <td></td></tr>\n<tr><td>input_params.product_type</td><td>string</td><td>The product type</td><td>value_analysis</td>\n        <td></td></tr>\n<tr><td>input_params.include_comp_based_analysis</td><td>string</td><td>Whether to include comp-based analysis was included in the request</td><td>true</td>\n        <td>[true, false]</td></tr>\n<tr><td>input_params.zipcode</td><td>string</td><td>The zipcode</td><td>85020</td>\n        <td></td></tr>\n<tr><td>input_params.street_address</td><td>string</td><td>Building number, street name and unit number</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>input_params.estimated_value</td><td>string</td><td>Outside estimate of the property’s value, maybe from a BPO or previous appraised value</td><td>320000</td>\n        <td></td></tr>\n<tr><td>input_params.gla_sqft</td><td>string</td><td>Gross living area of property in square feet</td><td>2750</td>\n        <td></td></tr>\n<tr><td>recommended_approach</td><td>string</td><td>HouseCanary’s suggested course of action to determine the value of the property with high confidence. One of: <pre>[No exceptions - Automate, Minor exceptions - Human review, Major exceptions - Onsite review]</pre></td><td>Minor exceptions - Human review</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis</td><td>object</td><td>How HouseCanary’s AVM for the property relates to the area</td><td></td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.avm_value</td><td>integer</td><td>HouseCanary automated value model for the property</td><td>1801218</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.avm_confidence</td><td>string</td><td>Confidence of the HouseCanary AVM for the property</td><td>high</td>\n        <td>[low, medium, high]</td></tr>\n<tr><td>hc_avm_value_analysis.avm_fsd</td><td>number</td><td>Forecast standard deviation (FSD) for the AVM value, representing the model’s confidence. Lower values indicate higher confidence in the AVM estimate.</td><td>0.1414001</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.neighborhood_analysis</td><td>object</td><td>Details about housing stock in the census blockgroup containing the property</td><td></td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.neighborhood_analysis.avm_value_sqft</td><td>integer</td><td>Value per square foot</td><td>987</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.neighborhood_analysis.5th_percentile_value_per_sqft</td><td>number</td><td>5th percentile of the range of property values in the area (i.e. low end of value range)</td><td>578.1</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.neighborhood_analysis.95th_percentile_value_per_sqft</td><td>number</td><td>95th percentile of the range of property values in the area (i.e. high end of value range)</td><td>988.7</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.neighborhood_analysis.within_neighborhood_norms</td><td>boolean</td><td><code>true</code> if the value falls between the 5th and 95th percentile of neighborhood values, <code>false</code> otherwise</td><td>true</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.comp_based_analysis</td><td>object</td><td>Feasibility of the property value based on comparable properties (adjusted by GLA)</td><td></td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.comp_based_analysis.comp_fsd</td><td>number</td><td>Forecast standard deviation (FSD) for the comparable-based valuation, indicating the model’s confidence. Lower values suggest higher confidence in the comp-based estimate.</td><td>0.131</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.comp_based_analysis.number_of_comps</td><td>integer</td><td>Number of high similarity comparable properties included in the analysis</td><td>15</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.comp_based_analysis.5th_percentile_adjusted_comp_value</td><td>integer</td><td>5th percentile of the range of property values for adjusted comparable properties (i.e. low end of value range)</td><td>1134796</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.comp_based_analysis.95th_percentile_adjusted_comp_value</td><td>integer</td><td>95th percentile of the range of property values for adjusted comparable properties (i.e. high end of value range)</td><td>1734155</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.comp_based_analysis.avm_value_percentile_in_adjusted_comp_values</td><td>number</td><td>Where the percentile ranking of the value lies in the distribution of adjusted comp prices</td><td>96.5</td>\n        <td></td></tr>\n<tr><td>hc_avm_value_analysis.comp_based_analysis.within_adjusted_comp_values</td><td>boolean</td><td><code>true</code> if the value falls between the 5th and 95th percentile of adjusted comp values, <code>false</code> otherwise</td><td>true</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_analysis"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>A single URL-safe string identifying the address (obtained from HouseCanary)</p>\n","type":"text/plain"},"key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":{"content":"<p>Building number, street name and unit number</p>\n","type":"text/plain"},"key":"street_address","value":"123 Main St San Francisco CA 94132"},{"description":{"content":"<p>5-digit ZIP code</p>\n","type":"text/plain"},"key":"zipcode","value":"94132"},{"description":{"content":"<p>Outside estimate of the property’s value, maybe from a BPO or previous appraised value</p>\n","type":"text/plain"},"key":"estimated_value","value":"325000"},{"description":{"content":"<p>Gross living area of property in square feet</p>\n","type":"text/plain"},"key":"gla_sqft","value":"2750"},{"description":{"content":"<p>Whether to include comp-based analysis (response may be slower if included)</p>\n","type":"text/plain"},"key":"include_comp_based_analysis","value":"true"}],"variable":[]}},"response":[{"id":"d6cb47f0-f71e-477a-b90e-b5f94878dc3d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_analysis?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&street_address=123 Main St San Francisco CA 94132&zipcode=94132&estimated_value=325000&gla_sqft=2750&include_comp_based_analysis=true","host":["https://api.housecanary.com"],"path":["v2","property","value_analysis"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"street_address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Outside estimate of the property’s value, maybe from a BPO or previous appraised value","key":"estimated_value","value":"325000"},{"description":"Gross living area of property in square feet","key":"gla_sqft","value":"2750"},{"description":"Whether to include comp-based analysis (response may be slower if included)","key":"include_comp_based_analysis","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"checks\": {\n    \"All pre-analysis checks passed\": true,\n    \"Address is supported\": true,\n    \"Address is complete\": true,\n    \"Precise geocode is available for address\": true,\n    \"Property at address is of supported type\": true,\n    \"Census block group information is available\": true,\n    \"Enough information on neighborhood characteristics is available\": true,\n    \"Gross living area of property is available or provided as input\": true,\n    \"Comps available for analysis\": true\n  },\n  \"input_params\": {\n    \"slug\": \"1624-E-Dogwood-Ln-Gilbert-AZ-85295\",\n    \"product_type\": \"value_analysis\",\n    \"include_comp_based_analysis\": \"true\",\n    \"zipcode\": \"85020\",\n    \"street_address\": \"123 Main St San Francisco CA 94132\",\n    \"estimated_value\": \"320000\",\n    \"gla_sqft\": \"2750\"\n  },\n  \"recommended_approach\": \"Minor exceptions - Human review\",\n  \"hc_avm_value_analysis\": {\n    \"avm_value\": 1801218,\n    \"avm_confidence\": \"high\",\n    \"avm_fsd\": 0.1414001,\n    \"neighborhood_analysis\": {\n      \"avm_value_sqft\": 987,\n      \"5th_percentile_value_per_sqft\": 578.1,\n      \"95th_percentile_value_per_sqft\": 988.7,\n      \"within_neighborhood_norms\": true\n    },\n    \"comp_based_analysis\": {\n      \"comp_fsd\": 0.131,\n      \"number_of_comps\": 15,\n      \"5th_percentile_adjusted_comp_value\": 1134796,\n      \"95th_percentile_adjusted_comp_value\": 1734155,\n      \"avm_value_percentile_in_adjusted_comp_values\": 96.5,\n      \"within_adjusted_comp_values\": true\n    }\n  }\n}"},{"id":"550a4f86-a59e-42ca-ad94-944c12bae134","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_analysis?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&street_address=123 Main St San Francisco CA 94132&zipcode=94132&estimated_value=325000&gla_sqft=2750&include_comp_based_analysis=true","host":["https://api.housecanary.com"],"path":["v2","property","value_analysis"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"street_address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Outside estimate of the property’s value, maybe from a BPO or previous appraised value","key":"estimated_value","value":"325000"},{"description":"Gross living area of property in square feet","key":"gla_sqft","value":"2750"},{"description":"Whether to include comp-based analysis (response may be slower if included)","key":"include_comp_based_analysis","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d9d844a4-8570-4e18-9f97-3c6b59518299","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_analysis?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&street_address=123 Main St San Francisco CA 94132&zipcode=94132&estimated_value=325000&gla_sqft=2750&include_comp_based_analysis=true","host":["https://api.housecanary.com"],"path":["v2","property","value_analysis"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"street_address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Outside estimate of the property’s value, maybe from a BPO or previous appraised value","key":"estimated_value","value":"325000"},{"description":"Gross living area of property in square feet","key":"gla_sqft","value":"2750"},{"description":"Whether to include comp-based analysis (response may be slower if included)","key":"include_comp_based_analysis","value":"true"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1bcaaae9-04b6-488d-bb38-282abdd15e7b","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_analysis?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&street_address=123 Main St San Francisco CA 94132&zipcode=94132&estimated_value=325000&gla_sqft=2750&include_comp_based_analysis=true","host":["https://api.housecanary.com"],"path":["v2","property","value_analysis"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"street_address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Outside estimate of the property’s value, maybe from a BPO or previous appraised value","key":"estimated_value","value":"325000"},{"description":"Gross living area of property in square feet","key":"gla_sqft","value":"2750"},{"description":"Whether to include comp-based analysis (response may be slower if included)","key":"include_comp_based_analysis","value":"true"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b32ee688-bd58-4ee7-8c8f-4111bcf10e7b"},{"name":"Value by Image ","id":"d5109705-19b4-4a23-b4f1-ad19b6ae06ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"<p>JSON-encoded address object</p>\n","key":"address","value":"{\"slug\":null,\"city\":\"Gilbert\",\"state\":\"AZ\",\"unit\":\"\",\"address\":\"1624 E Dogwood Ln\",\"zipcode\":\"85295\"}","type":"text"},{"description":"<p>Up to 20 images are accepted per request and a larger set of images will yield more accurate results.</p>\n","key":"images","value":"file,file","type":"text"}]},"url":"https://api.housecanary.com/v3/property/value_by_image","description":"<p>This set of endpoints returns property value estimates based on submitted property images. Up to 20 images are accepted per request and a larger set of images will yield more accurate results. First, submit property images and an address to the POST value_by_image endpoint to receive a job_id and block_group_id. Then poll the GET value_by_image_job endpoint, passing the returned job_id and block_group_id, until job completion. When the job has finished, the property’s adjusted condition score and conditioned-based AVM (Automated Valuation Model) and FSD will be returned. Note: please do not poll the GET value_by_image_job endpoint more frequently than once per second to avoid interruptions from our firewall. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium Plus </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>address</td><td>string</td><td>JSON-encoded address object</td><td>{\"slug\":null,\"city\":\"Gilbert\",\"state\":\"AZ\",\"unit\":\"\",\"address\":\"1624 E Dogwood Ln\",\"zipcode\":\"85295\"}</td>\n        </tr>\n<tr><td>images</td><td>array</td><td>Up to 20 images are accepted per request and a larger set of images will yield more accurate results.</td><td></td>\n        </tr>\n<tr><td>images[]</td><td>string</td><td>Binary image data</td><td>file</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>message</td><td>string</td><td>The operation's status message</td><td>Job submitted</td>\n        </tr>\n<tr><td>job_id</td><td>string</td><td>The identifier of the job</td><td>11848</td>\n        </tr>\n<tr><td>job_status_url</td><td>string</td><td>The URL to be used for checking the job status</td><td>/property/value_by_image_job/11848?block_group_id=040138155022&amp;slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","value_by_image"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"79285963-ae0b-4662-8270-982c0737316a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"formdata","formdata":[{"description":"JSON-encoded address object","key":"address","value":"{\"slug\":null,\"city\":\"Gilbert\",\"state\":\"AZ\",\"unit\":\"\",\"address\":\"1624 E Dogwood Ln\",\"zipcode\":\"85295\"}","type":"text"},{"description":"Up to 20 images are accepted per request and a larger set of images will yield more accurate results.","key":"images","value":"file,file","type":"text"}]},"url":"https://api.housecanary.com/v3/property/value_by_image"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Job submitted\",\n  \"job_id\": \"11848\",\n  \"job_status_url\": \"/property/value_by_image_job/11848?block_group_id=040138155022&slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295\"\n}"},{"id":"d12f3e23-8de5-48a9-b4f9-d32f65db7371","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"formdata","formdata":[{"description":"JSON-encoded address object","key":"address","value":"{\"slug\":null,\"city\":\"Gilbert\",\"state\":\"AZ\",\"unit\":\"\",\"address\":\"1624 E Dogwood Ln\",\"zipcode\":\"85295\"}","type":"text"},{"description":"Up to 20 images are accepted per request and a larger set of images will yield more accurate results.","key":"images","value":"file,file","type":"text"}]},"url":"https://api.housecanary.com/v3/property/value_by_image"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"cdd01fe0-b423-4aae-a6b3-959e940a0690","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"formdata","formdata":[{"description":"JSON-encoded address object","key":"address","value":"{\"slug\":null,\"city\":\"Gilbert\",\"state\":\"AZ\",\"unit\":\"\",\"address\":\"1624 E Dogwood Ln\",\"zipcode\":\"85295\"}","type":"text"},{"description":"Up to 20 images are accepted per request and a larger set of images will yield more accurate results.","key":"images","value":"file,file","type":"text"}]},"url":"https://api.housecanary.com/v3/property/value_by_image"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4a754330-b660-4e8f-a541-e2d89aa4e1bf","name":"Address not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"formdata","formdata":[{"description":"JSON-encoded address object","key":"address","value":"{\"slug\":null,\"city\":\"Gilbert\",\"state\":\"AZ\",\"unit\":\"\",\"address\":\"1624 E Dogwood Ln\",\"zipcode\":\"85295\"}","type":"text"},{"description":"Up to 20 images are accepted per request and a larger set of images will yield more accurate results.","key":"images","value":"file,file","type":"text"}]},"url":"https://api.housecanary.com/v3/property/value_by_image"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"e914de1c-d294-4733-b61f-7d18286186a9","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"formdata","formdata":[{"description":"JSON-encoded address object","key":"address","value":"{\"slug\":null,\"city\":\"Gilbert\",\"state\":\"AZ\",\"unit\":\"\",\"address\":\"1624 E Dogwood Ln\",\"zipcode\":\"85295\"}","type":"text"},{"description":"Up to 20 images are accepted per request and a larger set of images will yield more accurate results.","key":"images","value":"file,file","type":"text"}]},"url":"https://api.housecanary.com/v3/property/value_by_image"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d5109705-19b4-4a23-b4f1-ad19b6ae06ed"},{"name":"Value by Image Job Status","id":"02a8421f-152f-45e6-b9fb-4b27a37f25bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/property/value_by_image_job/:job_id?block_group_id=040138155022&slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295","description":"<p>This set of endpoints returns property value estimates based on submitted property images. Up to 20 images are accepted per request and a larger set of images will yield more accurate results. First, submit property images and an address to the POST value_by_image endpoint to receive a job_id and block_group_id. Then poll the GET value_by_image_job endpoint, passing the returned job_id and block_group_id, until job completion. When the job has finished, the property’s adjusted condition score and conditioned-based AVM (Automated Valuation Model) and FSD will be returned. Note: please do not poll the GET value_by_image_job endpoint more frequently than once per second to avoid interruptions from our firewall. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_group_id</td><td>string</td><td>The identifier of the block group</td><td>040138155022</td>\n        </tr>\n<tr><td>slug</td><td>string</td><td>The slug of the property</td><td>1624-E-Dogwood-Ln-Gilbert-AZ-85295</td>\n        </tr>\n</table>\n\n<h2 id=\"request-path-params\">Request Path Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>job_id</td><td>string</td><td>The identifier of the job</td><td>11848</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>status</td><td>string</td><td></td><td></td>\n        <td>[QUEUED, DONE, FAILED]</td></tr>\n<tr><td>condition_class</td><td>string</td><td></td><td></td>\n        <td>[C1, C2, C3, C4, C5, C6]</td></tr>\n<tr><td>price_mean_at_condition</td><td>integer</td><td></td><td>519624</td>\n        <td></td></tr>\n<tr><td>price_upr_at_condition</td><td>integer</td><td></td><td>565351</td>\n        <td></td></tr>\n<tr><td>price_lwr_at_condition</td><td>integer</td><td></td><td>473896</td>\n        <td></td></tr>\n<tr><td>fsd</td><td>number</td><td></td><td>0.0880005</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","value_by_image_job",":job_id"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>The identifier of the block group</p>\n","type":"text/plain"},"key":"block_group_id","value":"040138155022"},{"description":{"content":"<p>The slug of the property</p>\n","type":"text/plain"},"key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"}],"variable":[{"id":"ca48d903-8a30-48f7-8d9a-cb794c38f74b","description":{"content":"<p>The identifier of the job</p>\n","type":"text/plain"},"type":"any","value":"11848","key":"job_id"}]}},"response":[{"id":"be185926-b561-4edd-94e7-43e8477561b8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_by_image_job/:job_id?block_group_id=040138155022&slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295","host":["https://api.housecanary.com"],"path":["v3","property","value_by_image_job",":job_id"],"query":[{"description":"The identifier of the block group","key":"block_group_id","value":"040138155022"},{"description":"The slug of the property","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"}],"variable":[{"key":"job_id","value":"11848","description":"The identifier of the job"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"QUEUED\",\n  \"condition_class\": \"C3\",\n  \"price_mean_at_condition\": 519624,\n  \"price_upr_at_condition\": 565351,\n  \"price_lwr_at_condition\": 473896,\n  \"fsd\": 0.0880005\n}"},{"id":"6ed5f9d4-c53c-4b13-8cf9-3ed773799b76","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_by_image_job/:job_id?block_group_id=040138155022&slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295","host":["https://api.housecanary.com"],"path":["v3","property","value_by_image_job",":job_id"],"query":[{"description":"The identifier of the block group","key":"block_group_id","value":"040138155022"},{"description":"The slug of the property","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"}],"variable":[{"key":"job_id","value":"11848","description":"The identifier of the job"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a0f059b9-a2fb-46f0-8357-80e8d0b7c6b6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_by_image_job/:job_id?block_group_id=040138155022&slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295","host":["https://api.housecanary.com"],"path":["v3","property","value_by_image_job",":job_id"],"query":[{"description":"The identifier of the block group","key":"block_group_id","value":"040138155022"},{"description":"The slug of the property","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"}],"variable":[{"key":"job_id","value":"11848","description":"The identifier of the job"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2c6f6c28-1bd6-4ba3-9cd4-08189ffa076f","name":"Address not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_by_image_job/:job_id?block_group_id=040138155022&slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295","host":["https://api.housecanary.com"],"path":["v3","property","value_by_image_job",":job_id"],"query":[{"description":"The identifier of the block group","key":"block_group_id","value":"040138155022"},{"description":"The slug of the property","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"}],"variable":[{"key":"job_id","value":"11848","description":"The identifier of the job"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"7b9a5d56-e160-4b78-9df1-fa91d424546a","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_by_image_job/:job_id?block_group_id=040138155022&slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295","host":["https://api.housecanary.com"],"path":["v3","property","value_by_image_job",":job_id"],"query":[{"description":"The identifier of the block group","key":"block_group_id","value":"040138155022"},{"description":"The slug of the property","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"}],"variable":[{"key":"job_id","value":"11848","description":"The identifier of the job"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"02a8421f-152f-45e6-b9fb-4b27a37f25bb"},{"name":"Value by Condition","id":"e924d2a8-e49d-4268-9d39-b08f54e20e90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/value_by_six_conditions?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>This endpoint allows you to determine the value of the property based on the current condition of the property as determined by HouseCanary's proprietary algorithms. Each condition class corresponds to the standardized C1 through C6 condition rating scale that conforms to <a href=\"https://selling-guide.fanniemae.com/sel/b4-1.3-06/property-condition-and-quality-construction-improvements#P3806\">Fannie Mae UAD guidelines</a>. Values at each condition level are determined based on local market conditions and are determined through a mix of computer vision and statistical modeling. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium Plus </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>value</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>value.price_mean</td><td>integer</td><td>Same value that is provided as part of the property/value response</td><td>450000</td>\n        <td></td></tr>\n<tr><td>value.price_upr</td><td>integer</td><td>Same value that is provided as part of the property/value response</td><td>480000</td>\n        <td></td></tr>\n<tr><td>value.price_lwr</td><td>integer</td><td>Same value that is provided as part of the property/value response</td><td>420000</td>\n        <td></td></tr>\n<tr><td>value.fsd</td><td>number</td><td>Same value that is provided as part of the property/value response</td><td>0.1</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_0</td><td>integer</td><td>Quantitatively derived value of the property at the lowest condition rating of C6</td><td>380000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_1</td><td>integer</td><td>Quantitatively derived value of the property at the condition rating of C5</td><td>410000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_2</td><td>integer</td><td>Quantitatively derived value of the property at the condition rating of C4</td><td>430000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_3</td><td>integer</td><td>Quantitatively derived value of the property at the condition rating of C3</td><td>440000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_4</td><td>integer</td><td>Quantitatively derived value of the property at the condition rating of C2</td><td>460000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_5</td><td>integer</td><td>Quantitatively derived value of the property at the highest condition rating of C1</td><td>490000</td>\n        <td></td></tr>\n<tr><td>value.condition_class</td><td>string</td><td>The current condition rating of the property as determined by HouseCanary. The standardized condition rating (C1 through C6) conforms to the UAD guidelines for determining condition.</td><td>C4</td>\n        <td>[C1, C2, C3, C4, C5, C6]</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_by_six_conditions"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"f242f65b-13d3-4514-beae-5acb8fcfa310","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_by_six_conditions?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value_by_six_conditions"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_by_six_conditions\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value\": {\n          \"price_mean\": 450000,\n          \"price_upr\": 480000,\n          \"price_lwr\": 420000,\n          \"fsd\": 0.1,\n          \"price_at_cond_0\": 380000,\n          \"price_at_cond_1\": 410000,\n          \"price_at_cond_2\": 430000,\n          \"price_at_cond_3\": 440000,\n          \"price_at_cond_4\": 460000,\n          \"price_at_cond_5\": 490000,\n          \"condition_class\": \"C4\"\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_by_six_conditions\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value\": {\n          \"price_mean\": 450000,\n          \"price_upr\": 480000,\n          \"price_lwr\": 420000,\n          \"fsd\": 0.1,\n          \"price_at_cond_0\": 380000,\n          \"price_at_cond_1\": 410000,\n          \"price_at_cond_2\": 430000,\n          \"price_at_cond_3\": 440000,\n          \"price_at_cond_4\": 460000,\n          \"price_at_cond_5\": 490000,\n          \"condition_class\": \"C4\"\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"731d5950-b95a-43d1-8a7b-cfc4cdef73c3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_by_six_conditions?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value_by_six_conditions"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d660f0c3-72a9-4185-98dc-0e9b5eec8a9e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_by_six_conditions?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value_by_six_conditions"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b641ed2f-f3ba-49f5-bfff-0cb2bcc15443","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_by_six_conditions?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value_by_six_conditions"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e924d2a8-e49d-4268-9d39-b08f54e20e90"},{"name":"Value by Condition (Batch)","id":"5df21aff-c6bf-4d05-be61-5e8cc5740f36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_by_six_conditions","description":"<p>This endpoint allows you to determine the value of the property based on the current condition of the property as determined by HouseCanary's proprietary algorithms. Each condition class corresponds to the standardized C1 through C6 condition rating scale that conforms to <a href=\"https://selling-guide.fanniemae.com/sel/b4-1.3-06/property-condition-and-quality-construction-improvements#P3806\">Fannie Mae UAD guidelines</a>. Values at each condition level are determined based on local market conditions and are determined through a mix of computer vision and statistical modeling. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium Plus </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>value</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>value.price_mean</td><td>integer</td><td>Same value that is provided as part of the property/value response</td><td>450000</td>\n        <td></td></tr>\n<tr><td>value.price_upr</td><td>integer</td><td>Same value that is provided as part of the property/value response</td><td>480000</td>\n        <td></td></tr>\n<tr><td>value.price_lwr</td><td>integer</td><td>Same value that is provided as part of the property/value response</td><td>420000</td>\n        <td></td></tr>\n<tr><td>value.fsd</td><td>number</td><td>Same value that is provided as part of the property/value response</td><td>0.1</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_0</td><td>integer</td><td>Quantitatively derived value of the property at the lowest condition rating of C6</td><td>380000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_1</td><td>integer</td><td>Quantitatively derived value of the property at the condition rating of C5</td><td>410000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_2</td><td>integer</td><td>Quantitatively derived value of the property at the condition rating of C4</td><td>430000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_3</td><td>integer</td><td>Quantitatively derived value of the property at the condition rating of C3</td><td>440000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_4</td><td>integer</td><td>Quantitatively derived value of the property at the condition rating of C2</td><td>460000</td>\n        <td></td></tr>\n<tr><td>value.price_at_cond_5</td><td>integer</td><td>Quantitatively derived value of the property at the highest condition rating of C1</td><td>490000</td>\n        <td></td></tr>\n<tr><td>value.condition_class</td><td>string</td><td>The current condition rating of the property as determined by HouseCanary. The standardized condition rating (C1 through C6) conforms to the UAD guidelines for determining condition.</td><td>C4</td>\n        <td>[C1, C2, C3, C4, C5, C6]</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_by_six_conditions"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"ea65cbce-12b1-41d8-b624-50bfafde2dca","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_by_six_conditions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_by_six_conditions\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value\": {\n          \"price_mean\": 450000,\n          \"price_upr\": 480000,\n          \"price_lwr\": 420000,\n          \"fsd\": 0.1,\n          \"price_at_cond_0\": 380000,\n          \"price_at_cond_1\": 410000,\n          \"price_at_cond_2\": 430000,\n          \"price_at_cond_3\": 440000,\n          \"price_at_cond_4\": 460000,\n          \"price_at_cond_5\": 490000,\n          \"condition_class\": \"C4\"\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_by_six_conditions\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"value\": {\n          \"price_mean\": 450000,\n          \"price_upr\": 480000,\n          \"price_lwr\": 420000,\n          \"fsd\": 0.1,\n          \"price_at_cond_0\": 380000,\n          \"price_at_cond_1\": 410000,\n          \"price_at_cond_2\": 430000,\n          \"price_at_cond_3\": 440000,\n          \"price_at_cond_4\": 460000,\n          \"price_at_cond_5\": 490000,\n          \"condition_class\": \"C4\"\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"93f52161-1cef-4f5e-9ddd-021753aba402","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_by_six_conditions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ec9adb93-abe3-4953-9cc9-fa86e5e780b3","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_by_six_conditions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"96c3eed8-362a-4c98-a5a2-5867b5c60ab4","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_by_six_conditions"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5df21aff-c6bf-4d05-be61-5e8cc5740f36"},{"name":"Value with Adjustments","id":"e2bc6b63-086f-4e0f-a713-1d1e755b3154","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/value_details_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&add_beds=2&add_baths=1&add_sqft=400&add_pools=1","description":"<p>Estimate adjusted property values based on potential modifications, useful for evaluating renovation opportunities and ROI. At least one of the following parameters is required to adjust value: addition of bedrooms, bathrooms, square footage, or pool.</p>\n<p>If multiple details are specified in one request, the adjusted_value_to in the response will reflect the combined effect of all adjustments - it will not return separate values for each individual adjustment. To determine the value effects of several different adjustments, multiple queries are required, but can be combined into one POST request.</p>\n<p>If we cannot perform the adjustment for any reason, a 204 response will be returned and the call will not be charged. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n<tr><td>add_beds</td><td>integer</td><td>The number of bedrooms to add to calculate an adjusted value for the property.</td><td>2</td>\n        </tr>\n<tr><td>add_baths</td><td>number</td><td>The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.</td><td>1</td>\n        </tr>\n<tr><td>add_sqft</td><td>integer</td><td>The number of square feet to add to calculate an adjusted value for the property.</td><td>400</td>\n        </tr>\n<tr><td>add_pools</td><td>integer</td><td>The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".</td><td>1</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>adjusted_value_to</td><td>integer</td><td>The adjusted value of the property based on the provided adjustments.</td><td>350000</td>\n        </tr>\n<tr><td>adjustments</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>adjustments.add_beds</td><td>integer</td><td>The number of bedrooms added to calculate the adjusted value.</td><td>2</td>\n        </tr>\n<tr><td>adjustments.add_baths</td><td>number</td><td>The number of bathrooms added to calculate the adjusted value.</td><td>1.5</td>\n        </tr>\n<tr><td>adjustments.add_sqft</td><td>integer</td><td>The number of square feet added to calculate the adjusted value.</td><td>400</td>\n        </tr>\n<tr><td>adjustments.add_pools</td><td>integer</td><td>The number of pools added to calculate the adjusted value.</td><td>1</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_details_adjusted"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>The number of bedrooms to add to calculate an adjusted value for the property.</p>\n","type":"text/plain"},"key":"add_beds","value":"2"},{"description":{"content":"<p>The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.</p>\n","type":"text/plain"},"key":"add_baths","value":"1"},{"description":{"content":"<p>The number of square feet to add to calculate an adjusted value for the property.</p>\n","type":"text/plain"},"key":"add_sqft","value":"400"},{"description":{"content":"<p>The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".</p>\n","type":"text/plain"},"key":"add_pools","value":"1"}],"variable":[]}},"response":[{"id":"d592f388-acb0-4247-94cb-0a52e65cc99a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_details_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&add_beds=2&add_baths=1&add_sqft=400&add_pools=1","host":["https://api.housecanary.com"],"path":["v2","property","value_details_adjusted"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"The number of bedrooms to add to calculate an adjusted value for the property.","key":"add_beds","value":"2"},{"description":"The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.","key":"add_baths","value":"1"},{"description":"The number of square feet to add to calculate an adjusted value for the property.","key":"add_sqft","value":"400"},{"description":"The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".","key":"add_pools","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_details_adjusted\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"adjusted_value_to\": 350000,\n        \"adjustments\": {\n          \"add_beds\": 2,\n          \"add_baths\": 1.5,\n          \"add_sqft\": 400,\n          \"add_pools\": 1\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_details_adjusted\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"adjusted_value_to\": 350000,\n        \"adjustments\": {\n          \"add_beds\": 2,\n          \"add_baths\": 1.5,\n          \"add_sqft\": 400,\n          \"add_pools\": 1\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"f2a412af-1314-46f4-8d6f-bf6dfd5fb337","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_details_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&add_beds=2&add_baths=1&add_sqft=400&add_pools=1","host":["https://api.housecanary.com"],"path":["v2","property","value_details_adjusted"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"The number of bedrooms to add to calculate an adjusted value for the property.","key":"add_beds","value":"2"},{"description":"The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.","key":"add_baths","value":"1"},{"description":"The number of square feet to add to calculate an adjusted value for the property.","key":"add_sqft","value":"400"},{"description":"The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".","key":"add_pools","value":"1"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"46880bb1-3395-4421-9850-9cb4f2f3683c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_details_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&add_beds=2&add_baths=1&add_sqft=400&add_pools=1","host":["https://api.housecanary.com"],"path":["v2","property","value_details_adjusted"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"The number of bedrooms to add to calculate an adjusted value for the property.","key":"add_beds","value":"2"},{"description":"The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.","key":"add_baths","value":"1"},{"description":"The number of square feet to add to calculate an adjusted value for the property.","key":"add_sqft","value":"400"},{"description":"The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".","key":"add_pools","value":"1"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"fb698849-07aa-46de-b7fa-5e9c405b92bb","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_details_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&add_beds=2&add_baths=1&add_sqft=400&add_pools=1","host":["https://api.housecanary.com"],"path":["v2","property","value_details_adjusted"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"The number of bedrooms to add to calculate an adjusted value for the property.","key":"add_beds","value":"2"},{"description":"The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.","key":"add_baths","value":"1"},{"description":"The number of square feet to add to calculate an adjusted value for the property.","key":"add_sqft","value":"400"},{"description":"The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".","key":"add_pools","value":"1"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e2bc6b63-086f-4e0f-a713-1d1e755b3154"},{"name":"Value with Adjustments (Batch)","id":"0f49ebea-9905-47c3-b7b5-064d3bf6f10e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_details_adjusted?add_beds=2&add_baths=1&add_sqft=400&add_pools=1","description":"<p>Estimate adjusted property values based on potential modifications, useful for evaluating renovation opportunities and ROI. At least one of the following parameters is required to adjust value: addition of bedrooms, bathrooms, square footage, or pool.</p>\n<p>If multiple details are specified in one request, the adjusted_value_to in the response will reflect the combined effect of all adjustments - it will not return separate values for each individual adjustment. To determine the value effects of several different adjustments, multiple queries are required, but can be combined into one POST request.</p>\n<p>If we cannot perform the adjustment for any reason, a 204 response will be returned and the call will not be charged. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>add_beds</td><td>integer</td><td>The number of bedrooms to add to calculate an adjusted value for the property.</td><td>2</td>\n        </tr>\n<tr><td>add_baths</td><td>number</td><td>The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.</td><td>1</td>\n        </tr>\n<tr><td>add_sqft</td><td>integer</td><td>The number of square feet to add to calculate an adjusted value for the property.</td><td>400</td>\n        </tr>\n<tr><td>add_pools</td><td>integer</td><td>The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".</td><td>1</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>adjusted_value_to</td><td>integer</td><td>The adjusted value of the property based on the provided adjustments.</td><td>350000</td>\n        </tr>\n<tr><td>adjustments</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>adjustments.add_beds</td><td>integer</td><td>The number of bedrooms added to calculate the adjusted value.</td><td>2</td>\n        </tr>\n<tr><td>adjustments.add_baths</td><td>number</td><td>The number of bathrooms added to calculate the adjusted value.</td><td>1.5</td>\n        </tr>\n<tr><td>adjustments.add_sqft</td><td>integer</td><td>The number of square feet added to calculate the adjusted value.</td><td>400</td>\n        </tr>\n<tr><td>adjustments.add_pools</td><td>integer</td><td>The number of pools added to calculate the adjusted value.</td><td>1</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_details_adjusted"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>The number of bedrooms to add to calculate an adjusted value for the property.</p>\n","type":"text/plain"},"key":"add_beds","value":"2"},{"description":{"content":"<p>The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.</p>\n","type":"text/plain"},"key":"add_baths","value":"1"},{"description":{"content":"<p>The number of square feet to add to calculate an adjusted value for the property.</p>\n","type":"text/plain"},"key":"add_sqft","value":"400"},{"description":{"content":"<p>The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".</p>\n","type":"text/plain"},"key":"add_pools","value":"1"}],"variable":[]}},"response":[{"id":"23cc132c-bd78-49b9-bdc5-ec542df35b62","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_details_adjusted?add_beds=2&add_baths=1&add_sqft=400&add_pools=1","host":["https://api.housecanary.com"],"path":["v2","property","value_details_adjusted"],"query":[{"description":"The number of bedrooms to add to calculate an adjusted value for the property.","key":"add_beds","value":"2"},{"description":"The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.","key":"add_baths","value":"1"},{"description":"The number of square feet to add to calculate an adjusted value for the property.","key":"add_sqft","value":"400"},{"description":"The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".","key":"add_pools","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_details_adjusted\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"adjusted_value_to\": 350000,\n        \"adjustments\": {\n          \"add_beds\": 2,\n          \"add_baths\": 1.5,\n          \"add_sqft\": 400,\n          \"add_pools\": 1\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_details_adjusted\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"adjusted_value_to\": 350000,\n        \"adjustments\": {\n          \"add_beds\": 2,\n          \"add_baths\": 1.5,\n          \"add_sqft\": 400,\n          \"add_pools\": 1\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"d738b0b9-1d6f-4cae-ad5a-b12c61b7f694","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_details_adjusted?add_beds=2&add_baths=1&add_sqft=400&add_pools=1","host":["https://api.housecanary.com"],"path":["v2","property","value_details_adjusted"],"query":[{"description":"The number of bedrooms to add to calculate an adjusted value for the property.","key":"add_beds","value":"2"},{"description":"The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.","key":"add_baths","value":"1"},{"description":"The number of square feet to add to calculate an adjusted value for the property.","key":"add_sqft","value":"400"},{"description":"The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".","key":"add_pools","value":"1"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f422883d-5d6b-4999-a00f-f8b7dfe7b90f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_details_adjusted?add_beds=2&add_baths=1&add_sqft=400&add_pools=1","host":["https://api.housecanary.com"],"path":["v2","property","value_details_adjusted"],"query":[{"description":"The number of bedrooms to add to calculate an adjusted value for the property.","key":"add_beds","value":"2"},{"description":"The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.","key":"add_baths","value":"1"},{"description":"The number of square feet to add to calculate an adjusted value for the property.","key":"add_sqft","value":"400"},{"description":"The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".","key":"add_pools","value":"1"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"5a664784-ebd4-47ac-a158-ea15900048b8","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_details_adjusted?add_beds=2&add_baths=1&add_sqft=400&add_pools=1","host":["https://api.housecanary.com"],"path":["v2","property","value_details_adjusted"],"query":[{"description":"The number of bedrooms to add to calculate an adjusted value for the property.","key":"add_beds","value":"2"},{"description":"The number of bathrooms to add to calculate an adjusted value for the property. Only accepts whole and half number values, corresponding to full and half bathrooms.","key":"add_baths","value":"1"},{"description":"The number of square feet to add to calculate an adjusted value for the property.","key":"add_sqft","value":"400"},{"description":"The number of pools to add to calculate an adjusted value for the property. Only accepts a value of \"1\".","key":"add_pools","value":"1"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0f49ebea-9905-47c3-b7b5-064d3bf6f10e"},{"name":"Value Forecast","id":"78353a1c-a67e-4581-810a-c244f958b3c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>HouseCanary's 3-year home price forecasts, essential for understanding market trends and making informed investment decisions.</p>\n<p>Home values are forecast 3 years into the future using HouseCanary's AVM values and home price index (HPI) at a zip code level. Fields include forecast % growth (decline) at the following monthly intervals into the future: 3, 6, 12, 18, 24, 30 and 36. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>month_03</td><td>object</td><td>Forecasted value information for 3 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_03.value</td><td>integer</td><td>HouseCanary forecasted value within the 3 month period</td><td>350000</td>\n        </tr>\n<tr><td>month_06</td><td>object</td><td>Forecasted value information for 6 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_06.value</td><td>integer</td><td>HouseCanary forecasted value within the 6 month period</td><td>365000</td>\n        </tr>\n<tr><td>month_12</td><td>object</td><td>Forecasted value information for 12 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_12.value</td><td>integer</td><td>HouseCanary forecasted value within the 12 month period</td><td>375000</td>\n        </tr>\n<tr><td>month_18</td><td>object</td><td>Forecasted value information for 18 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_18.value</td><td>integer</td><td>HouseCanary forecasted value within the 18 month period</td><td>380000</td>\n        </tr>\n<tr><td>month_24</td><td>object</td><td>Forecasted value information for 24 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_24.value</td><td>integer</td><td>HouseCanary forecasted value within the 24 month period</td><td>390000</td>\n        </tr>\n<tr><td>month_30</td><td>object</td><td>Forecasted value information for 30 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_30.value</td><td>integer</td><td>HouseCanary forecasted value within the 30 month period</td><td>400000</td>\n        </tr>\n<tr><td>month_36</td><td>object</td><td>Forecasted value information for 36 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_36.value</td><td>integer</td><td>HouseCanary forecasted value within the 36 month period</td><td>410000</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"ebd1dfcf-8893-43ef-a9ff-3c8b271e1d04","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"month_03\": {\n          \"value\": 350000\n        },\n        \"month_06\": {\n          \"value\": 365000\n        },\n        \"month_12\": {\n          \"value\": 375000\n        },\n        \"month_18\": {\n          \"value\": 380000\n        },\n        \"month_24\": {\n          \"value\": 390000\n        },\n        \"month_30\": {\n          \"value\": 400000\n        },\n        \"month_36\": {\n          \"value\": 410000\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"month_03\": {\n          \"value\": 350000\n        },\n        \"month_06\": {\n          \"value\": 365000\n        },\n        \"month_12\": {\n          \"value\": 375000\n        },\n        \"month_18\": {\n          \"value\": 380000\n        },\n        \"month_24\": {\n          \"value\": 390000\n        },\n        \"month_30\": {\n          \"value\": 400000\n        },\n        \"month_36\": {\n          \"value\": 410000\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"28eb2b60-6009-4ae0-ad2b-3827c2a69f13","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"cfa2310b-89c9-46a2-b199-58e8f29b8f4b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b96af3a2-0ebd-482b-b5dc-1fa517893f04","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","value_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"78353a1c-a67e-4581-810a-c244f958b3c4"},{"name":"Value Forecast (Batch)","id":"c20ba609-3d89-4ad7-987f-c1e7b472d67e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_forecast","description":"<p>HouseCanary's 3-year home price forecasts, essential for understanding market trends and making informed investment decisions.</p>\n<p>Home values are forecast 3 years into the future using HouseCanary's AVM values and home price index (HPI) at a zip code level. Fields include forecast % growth (decline) at the following monthly intervals into the future: 3, 6, 12, 18, 24, 30 and 36. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>month_03</td><td>object</td><td>Forecasted value information for 3 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_03.value</td><td>integer</td><td>HouseCanary forecasted value within the 3 month period</td><td>350000</td>\n        </tr>\n<tr><td>month_06</td><td>object</td><td>Forecasted value information for 6 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_06.value</td><td>integer</td><td>HouseCanary forecasted value within the 6 month period</td><td>365000</td>\n        </tr>\n<tr><td>month_12</td><td>object</td><td>Forecasted value information for 12 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_12.value</td><td>integer</td><td>HouseCanary forecasted value within the 12 month period</td><td>375000</td>\n        </tr>\n<tr><td>month_18</td><td>object</td><td>Forecasted value information for 18 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_18.value</td><td>integer</td><td>HouseCanary forecasted value within the 18 month period</td><td>380000</td>\n        </tr>\n<tr><td>month_24</td><td>object</td><td>Forecasted value information for 24 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_24.value</td><td>integer</td><td>HouseCanary forecasted value within the 24 month period</td><td>390000</td>\n        </tr>\n<tr><td>month_30</td><td>object</td><td>Forecasted value information for 30 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_30.value</td><td>integer</td><td>HouseCanary forecasted value within the 30 month period</td><td>400000</td>\n        </tr>\n<tr><td>month_36</td><td>object</td><td>Forecasted value information for 36 months with ZIP level Home Price Index</td><td></td>\n        </tr>\n<tr><td>month_36.value</td><td>integer</td><td>HouseCanary forecasted value within the 36 month period</td><td>410000</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_forecast"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"665c87b9-2193-410a-a298-8ae0c2ae11ac","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_forecast"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"month_03\": {\n          \"value\": 350000\n        },\n        \"month_06\": {\n          \"value\": 365000\n        },\n        \"month_12\": {\n          \"value\": 375000\n        },\n        \"month_18\": {\n          \"value\": 380000\n        },\n        \"month_24\": {\n          \"value\": 390000\n        },\n        \"month_30\": {\n          \"value\": 400000\n        },\n        \"month_36\": {\n          \"value\": 410000\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"month_03\": {\n          \"value\": 350000\n        },\n        \"month_06\": {\n          \"value\": 365000\n        },\n        \"month_12\": {\n          \"value\": 375000\n        },\n        \"month_18\": {\n          \"value\": 380000\n        },\n        \"month_24\": {\n          \"value\": 390000\n        },\n        \"month_30\": {\n          \"value\": 400000\n        },\n        \"month_36\": {\n          \"value\": 410000\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"4b9b5c83-31e5-48d2-a2da-090e49015ea0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_forecast"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"88a0d345-8861-4918-9bea-0f9bbc134361","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_forecast"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"5c5ea517-5472-40e4-8c06-8eebe1aeaaed","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_forecast"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c20ba609-3d89-4ad7-987f-c1e7b472d67e"},{"name":"Value with FSD threshold filter","id":"6a5ea6c3-6e86-4163-90d7-fa475ce14d50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/property/value_fsd_threshold?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&fsd_threshold=0.05","description":"<p>HouseCanary's proprietary Automated Valuation Model (AVM) utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market value of a residential property. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence. If the optional FSD threshold is supplied, customers are not billed for responses containing AVMs not meeting the threshold. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n<tr><td>fsd_threshold</td><td>number</td><td>FSD threshold for the subject avm value</td><td>0.05</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>value</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>value.price_upper</td><td>integer</td><td>Upper bound of the avm value</td><td>380000</td>\n        <td></td></tr>\n<tr><td>value.price_lower</td><td>integer</td><td>Lower bound of the avm value</td><td>350000</td>\n        <td></td></tr>\n<tr><td>value.price_mean</td><td>integer</td><td>Mean avm value</td><td>365000</td>\n        <td></td></tr>\n<tr><td>value.fsd</td><td>number</td><td>Fractional standard deviation of the avm value</td><td>0.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","value_fsd_threshold"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>FSD threshold for the subject avm value</p>\n","type":"text/plain"},"key":"fsd_threshold","value":"0.05"}],"variable":[]}},"response":[{"id":"321a6e1e-383e-4072-8b2f-28f7e7ee0620","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_fsd_threshold?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&fsd_threshold=0.05","host":["https://api.housecanary.com"],"path":["v3","property","value_fsd_threshold"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"FSD threshold for the subject avm value","key":"fsd_threshold","value":"0.05"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"subject_address\": {\n    \"address_full\": \"123 Main St San Francisco CA 94132\",\n    \"address_id\": 8927,\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"block_id\": \"060750313013007\",\n    \"city\": \"San Francisco\",\n    \"fips\": \"06075\",\n    \"geo_precision\": \"rooftop\",\n    \"latitude\": 37.789,\n    \"longitude\": -122.401,\n    \"state\": \"CA\",\n    \"unit\": \"Apt 1\",\n    \"address\": \"123 Main St\",\n    \"zipcode\": \"94132\",\n    \"zipcode_plus4\": \"1234\",\n    \"msa\": \"41860\"\n  },\n  \"value\": {\n    \"price_upper\": 380000,\n    \"price_lower\": 350000,\n    \"price_mean\": 365000,\n    \"fsd\": 0.5\n  }\n}"},{"id":"b9c754a7-8533-4635-87c7-81fe839347b3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_fsd_threshold?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&fsd_threshold=0.05","host":["https://api.housecanary.com"],"path":["v3","property","value_fsd_threshold"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"FSD threshold for the subject avm value","key":"fsd_threshold","value":"0.05"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"cff64ade-b941-44b4-accd-dbdd325088df","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_fsd_threshold?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&fsd_threshold=0.05","host":["https://api.housecanary.com"],"path":["v3","property","value_fsd_threshold"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"FSD threshold for the subject avm value","key":"fsd_threshold","value":"0.05"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"fc822f7a-391e-4849-a142-423c45cef995","name":"Address not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_fsd_threshold?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&fsd_threshold=0.05","host":["https://api.housecanary.com"],"path":["v3","property","value_fsd_threshold"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"FSD threshold for the subject avm value","key":"fsd_threshold","value":"0.05"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"32664fb9-470b-4741-94fb-95b7a16dce7f","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/value_fsd_threshold?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&fsd_threshold=0.05","host":["https://api.housecanary.com"],"path":["v3","property","value_fsd_threshold"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"FSD threshold for the subject avm value","key":"fsd_threshold","value":"0.05"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"6a5ea6c3-6e86-4163-90d7-fa475ce14d50"},{"name":"Value with FSD threshold filter ","id":"2ffd96a1-c4fd-4817-9166-b971bf86536b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"address_query\": [\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 6687,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 3214,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    }\n  ],\n  \"fsd_threshold\": 0.05\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/value_fsd_threshold","description":"<p>HouseCanary's proprietary Automated Valuation Model (AVM) utilizes a unique machine learning algorithm on top of multiple input data sources to estimate the current market value of a residential property. Responses include upper and lower bounds, as well as a forecast standard deviation (FSD) for transparency into model confidence. If the optional FSD threshold is supplied, customers are not billed for responses containing AVMs not meeting the threshold. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>fsd_threshold</td><td>number</td><td>FSD threshold for the subject avm value (optional)</td><td>0.05</td>\n        <td></td></tr>\n<tr><td>address_query</td><td>array</td><td>List of addresses</td><td></td>\n        <td></td></tr>\n<tr><td>address_query[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>address_query[].address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>address_query[].address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>address_query[].slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address_query[].block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>address_query[].city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>address_query[].fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>address_query[].geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>address_query[].latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>address_query[].longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>address_query[].state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>address_query[].unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>address_query[].address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>address_query[].zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>address_query[].zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>address_query[].msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_full</td><td>string</td><td>Full address string</td><td>123 Main St San Francisco CA 94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address_id</td><td>integer</td><td>HouseCanary address identifier</td><td>34343343</td>\n        <td></td></tr>\n<tr><td>[].subject_address.slug</td><td>string</td><td>HouseCanary address slug</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.block_id</td><td>string</td><td>15-digit US census block ID</td><td>060750313013007</td>\n        <td></td></tr>\n<tr><td>[].subject_address.city</td><td>string</td><td>City where property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>[].subject_address.fips</td><td>string</td><td>5-digit US census county ID</td><td>06075</td>\n        <td></td></tr>\n<tr><td>[].subject_address.geo_precision</td><td>string</td><td>A string describing available geo precision</td><td>rooftop</td>\n        <td>[rooftop, parcel, zip9, zip5, unknown]</td></tr>\n<tr><td>[].subject_address.latitude</td><td>number</td><td>Latitude value, in degrees</td><td>37.789</td>\n        <td></td></tr>\n<tr><td>[].subject_address.longitude</td><td>number</td><td>Longitude value, in degrees</td><td>-122.401</td>\n        <td></td></tr>\n<tr><td>[].subject_address.state</td><td>string</td><td>2-character state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>[].subject_address.unit</td><td>string</td><td>Unit within the building, if any</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>[].subject_address.address</td><td>string</td><td>Street address</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode</td><td>string</td><td>5-character US zipcode</td><td>94132</td>\n        <td></td></tr>\n<tr><td>[].subject_address.zipcode_plus4</td><td>string</td><td>4-character zipcode extension</td><td>1234</td>\n        <td></td></tr>\n<tr><td>[].subject_address.msa</td><td>string</td><td>5-digit US census MSA ID</td><td>41860</td>\n        <td></td></tr>\n<tr><td>[].value</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].value.price_upper</td><td>integer</td><td>Upper bound of the avm value</td><td>380000</td>\n        <td></td></tr>\n<tr><td>[].value.price_lower</td><td>integer</td><td>Lower bound of the avm value</td><td>350000</td>\n        <td></td></tr>\n<tr><td>[].value.price_mean</td><td>integer</td><td>Mean avm value</td><td>365000</td>\n        <td></td></tr>\n<tr><td>[].value.fsd</td><td>number</td><td>Fractional standard deviation of the avm value</td><td>0.5</td>\n        <td></td></tr>\n<tr><td>[].errors</td><td>array</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>[].errors[]</td><td>string</td><td></td><td></td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","value_fsd_threshold"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"70001c87-8a5e-45b4-bb20-70b08cedbaa6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"address_query\": [\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 6687,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 3214,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    }\n  ],\n  \"fsd_threshold\": 0.05\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/value_fsd_threshold"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 5285,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"value\": {\n      \"price_upper\": 380000,\n      \"price_lower\": 350000,\n      \"price_mean\": 365000,\n      \"fsd\": 0.5\n    },\n    \"errors\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  {\n    \"subject_address\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 5792,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    \"value\": {\n      \"price_upper\": 380000,\n      \"price_lower\": 350000,\n      \"price_mean\": 365000,\n      \"fsd\": 0.5\n    },\n    \"errors\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n]"},{"id":"a90b49a2-b671-4bc1-92b2-86a2d0e0ab03","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"address_query\": [\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 6687,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 3214,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    }\n  ],\n  \"fsd_threshold\": 0.05\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/value_fsd_threshold"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ce5dd8e6-4cd8-47b1-acfe-b0f67c3026ca","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"address_query\": [\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 6687,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 3214,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    }\n  ],\n  \"fsd_threshold\": 0.05\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/value_fsd_threshold"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2bff737d-ff79-42b1-963f-6da0f39f69f4","name":"Address not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"address_query\": [\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 6687,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 3214,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    }\n  ],\n  \"fsd_threshold\": 0.05\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/value_fsd_threshold"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Address not found\",\n  \"error_id\": \"err-37tT63aRMF5sqMWv9RLmu9t4NhG\",\n  \"code\": 404\n}"},{"id":"8d7633d7-7fe4-4461-86f6-1c66315111ac","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"address_query\": [\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 6687,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    },\n    {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"address_id\": 3214,\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"block_id\": \"060750313013007\",\n      \"city\": \"San Francisco\",\n      \"fips\": \"06075\",\n      \"geo_precision\": \"rooftop\",\n      \"latitude\": 37.789,\n      \"longitude\": -122.401,\n      \"state\": \"CA\",\n      \"unit\": \"Apt 1\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"msa\": \"41860\"\n    }\n  ],\n  \"fsd_threshold\": 0.05\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/value_fsd_threshold"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2ffd96a1-c4fd-4817-9166-b971bf86536b"},{"name":"Value HPI Adjusted","id":"579719bb-5ec2-422f-9a1c-4e31c3c9b17a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/value_hpi_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","description":"<p>Obtain adjusted property values based on desired dates using HPI, facilitating historical and future value comparisons.</p>\n<p>The data shows the dollar value of this property adjusted from its current AVM value to a desired date, either in the past or in the future. Adjustments are done by using HPI for block, block group, zipcode, MSA and state. All five adjustments are returned in the response.</p>\n<p>If the optional parameters client_value and client_date are given, the response will also show adjustment from that date and value to the same desired date. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n<tr><td>adjust_to_date</td><td>string</td><td>Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.</td><td>2017-01-01</td>\n        </tr>\n<tr><td>client_value</td><td>number</td><td>Alternative dollar value to adjust, supplied by the caller.</td><td>950000</td>\n        </tr>\n<tr><td>client_date</td><td>string</td><td>Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"</td><td></td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>client_value_adjusted</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>client_value_adjusted.from_value</td><td>integer</td><td>Property value as of `from_date`. Defaults to the HouseCanary AVM. Will be `client_value` if supplied in the request.</td><td>315000</td>\n        </tr>\n<tr><td>client_value_adjusted.from_date</td><td>string</td><td>Date from which the value is adjusted. Defaults to the current month. Will be `client_date` if supplied in the request.</td><td>2023-01-15</td>\n        </tr>\n<tr><td>client_value_adjusted.to_date</td><td>string</td><td>Date from which the value is adjusted. Defaults to the current month. Will be `adjust_to_date` if supplied in the request.</td><td>2023-06-30</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by</td><td>object</td><td>The set of HPIs used to adjust the property value in time.</td><td></td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.block</td><td>integer</td><td>Resulting value after adjusting by block HPI</td><td>904022</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.blockgroup</td><td>integer</td><td>Resulting value after adjusting by blockgroup HPI</td><td>972028</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.zip</td><td>integer</td><td>Resulting value after adjusting by ZIP code HPI</td><td>984655</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.msa</td><td>integer</td><td>Resulting value after adjusting by MSA HPI</td><td>994023</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.state</td><td>integer</td><td>Resulting value after adjusting by state HPI</td><td>894021</td>\n        </tr>\n<tr><td>housecanary_value_adjusted</td><td>object</td><td>The result of adjusting HouseCanary’s current AVM to another date using HouseCanary’s HPIs</td><td></td>\n        </tr>\n<tr><td>housecanary_value_adjusted.from_value</td><td>integer</td><td>Property value as of `from_date`. Defaults to the HouseCanary AVM. Will be `client_value` if supplied in the request.</td><td>315000</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.from_date</td><td>string</td><td>Date from which the value is adjusted. Defaults to the current month. Will be `client_date` if supplied in the request.</td><td>2023-01-15</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.to_date</td><td>string</td><td>Date from which the value is adjusted. Defaults to the current month. Will be `adjust_to_date` if supplied in the request.</td><td>2023-06-30</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by</td><td>object</td><td>The set of HPIs used to adjust the property value in time.</td><td></td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.block</td><td>integer</td><td>Resulting value after adjusting by block HPI</td><td>904022</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.blockgroup</td><td>integer</td><td>Resulting value after adjusting by blockgroup HPI</td><td>972028</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.zip</td><td>integer</td><td>Resulting value after adjusting by ZIP code HPI</td><td>984655</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.msa</td><td>integer</td><td>Resulting value after adjusting by MSA HPI</td><td>994023</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.state</td><td>integer</td><td>Resulting value after adjusting by state HPI</td><td>894021</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_hpi_adjusted"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.</p>\n","type":"text/plain"},"key":"adjust_to_date","value":"2017-01-01"},{"description":{"content":"<p>Alternative dollar value to adjust, supplied by the caller.</p>\n","type":"text/plain"},"key":"client_value","value":"950000"},{"description":{"content":"<p>Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"</p>\n","type":"text/plain"},"key":"client_date","value":"2021-12-08"}],"variable":[]}},"response":[{"id":"b32085a3-d5d7-473a-a5ff-07fb0cfd03a2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_hpi_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","host":["https://api.housecanary.com"],"path":["v2","property","value_hpi_adjusted"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.","key":"adjust_to_date","value":"2017-01-01"},{"description":"Alternative dollar value to adjust, supplied by the caller.","key":"client_value","value":"950000"},{"description":"Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"","key":"client_date","value":"2021-12-08"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_hpi_adjusted\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"client_value_adjusted\": {\n          \"from_value\": 315000,\n          \"from_date\": \"2023-01-15\",\n          \"to_date\": \"2023-06-30\",\n          \"adjusted_by\": {\n            \"block\": 904022,\n            \"blockgroup\": 972028,\n            \"zip\": 984655,\n            \"msa\": 994023,\n            \"state\": 894021\n          }\n        },\n        \"housecanary_value_adjusted\": {\n          \"from_value\": 315000,\n          \"from_date\": \"2023-01-15\",\n          \"to_date\": \"2023-06-30\",\n          \"adjusted_by\": {\n            \"block\": 904022,\n            \"blockgroup\": 972028,\n            \"zip\": 984655,\n            \"msa\": 994023,\n            \"state\": 894021\n          }\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_hpi_adjusted\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"client_value_adjusted\": {\n          \"from_value\": 315000,\n          \"from_date\": \"2023-01-15\",\n          \"to_date\": \"2023-06-30\",\n          \"adjusted_by\": {\n            \"block\": 904022,\n            \"blockgroup\": 972028,\n            \"zip\": 984655,\n            \"msa\": 994023,\n            \"state\": 894021\n          }\n        },\n        \"housecanary_value_adjusted\": {\n          \"from_value\": 315000,\n          \"from_date\": \"2023-01-15\",\n          \"to_date\": \"2023-06-30\",\n          \"adjusted_by\": {\n            \"block\": 904022,\n            \"blockgroup\": 972028,\n            \"zip\": 984655,\n            \"msa\": 994023,\n            \"state\": 894021\n          }\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"f934a2c6-0479-4528-84c3-f235bd24159c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_hpi_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","host":["https://api.housecanary.com"],"path":["v2","property","value_hpi_adjusted"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.","key":"adjust_to_date","value":"2017-01-01"},{"description":"Alternative dollar value to adjust, supplied by the caller.","key":"client_value","value":"950000"},{"description":"Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"","key":"client_date","value":"2021-12-08"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c328f281-15c7-4391-97e2-00fe6fb179f1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_hpi_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","host":["https://api.housecanary.com"],"path":["v2","property","value_hpi_adjusted"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.","key":"adjust_to_date","value":"2017-01-01"},{"description":"Alternative dollar value to adjust, supplied by the caller.","key":"client_value","value":"950000"},{"description":"Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"","key":"client_date","value":"2021-12-08"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"db51f90a-a1bd-48bb-a8fd-7ed56e00b905","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_hpi_adjusted?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","host":["https://api.housecanary.com"],"path":["v2","property","value_hpi_adjusted"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.","key":"adjust_to_date","value":"2017-01-01"},{"description":"Alternative dollar value to adjust, supplied by the caller.","key":"client_value","value":"950000"},{"description":"Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"","key":"client_date","value":"2021-12-08"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"579719bb-5ec2-422f-9a1c-4e31c3c9b17a"},{"name":"Value HPI Adjusted (Batch)","id":"d14722ac-622d-4616-bcad-17d4f16b5ac4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_hpi_adjusted?adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","description":"<p>Obtain adjusted property values based on desired dates using HPI, facilitating historical and future value comparisons.</p>\n<p>The data shows the dollar value of this property adjusted from its current AVM value to a desired date, either in the past or in the future. Adjustments are done by using HPI for block, block group, zipcode, MSA and state. All five adjustments are returned in the response.</p>\n<p>If the optional parameters client_value and client_date are given, the response will also show adjustment from that date and value to the same desired date. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>adjust_to_date</td><td>string</td><td>Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.</td><td>2017-01-01</td>\n        </tr>\n<tr><td>client_value</td><td>number</td><td>Alternative dollar value to adjust, supplied by the caller.</td><td>950000</td>\n        </tr>\n<tr><td>client_date</td><td>string</td><td>Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"</td><td></td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>client_value_adjusted</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>client_value_adjusted.from_value</td><td>integer</td><td>Property value as of `from_date`. Defaults to the HouseCanary AVM. Will be `client_value` if supplied in the request.</td><td>315000</td>\n        </tr>\n<tr><td>client_value_adjusted.from_date</td><td>string</td><td>Date from which the value is adjusted. Defaults to the current month. Will be `client_date` if supplied in the request.</td><td>2023-01-15</td>\n        </tr>\n<tr><td>client_value_adjusted.to_date</td><td>string</td><td>Date from which the value is adjusted. Defaults to the current month. Will be `adjust_to_date` if supplied in the request.</td><td>2023-06-30</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by</td><td>object</td><td>The set of HPIs used to adjust the property value in time.</td><td></td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.block</td><td>integer</td><td>Resulting value after adjusting by block HPI</td><td>904022</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.blockgroup</td><td>integer</td><td>Resulting value after adjusting by blockgroup HPI</td><td>972028</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.zip</td><td>integer</td><td>Resulting value after adjusting by ZIP code HPI</td><td>984655</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.msa</td><td>integer</td><td>Resulting value after adjusting by MSA HPI</td><td>994023</td>\n        </tr>\n<tr><td>client_value_adjusted.adjusted_by.state</td><td>integer</td><td>Resulting value after adjusting by state HPI</td><td>894021</td>\n        </tr>\n<tr><td>housecanary_value_adjusted</td><td>object</td><td>The result of adjusting HouseCanary’s current AVM to another date using HouseCanary’s HPIs</td><td></td>\n        </tr>\n<tr><td>housecanary_value_adjusted.from_value</td><td>integer</td><td>Property value as of `from_date`. Defaults to the HouseCanary AVM. Will be `client_value` if supplied in the request.</td><td>315000</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.from_date</td><td>string</td><td>Date from which the value is adjusted. Defaults to the current month. Will be `client_date` if supplied in the request.</td><td>2023-01-15</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.to_date</td><td>string</td><td>Date from which the value is adjusted. Defaults to the current month. Will be `adjust_to_date` if supplied in the request.</td><td>2023-06-30</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by</td><td>object</td><td>The set of HPIs used to adjust the property value in time.</td><td></td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.block</td><td>integer</td><td>Resulting value after adjusting by block HPI</td><td>904022</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.blockgroup</td><td>integer</td><td>Resulting value after adjusting by blockgroup HPI</td><td>972028</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.zip</td><td>integer</td><td>Resulting value after adjusting by ZIP code HPI</td><td>984655</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.msa</td><td>integer</td><td>Resulting value after adjusting by MSA HPI</td><td>994023</td>\n        </tr>\n<tr><td>housecanary_value_adjusted.adjusted_by.state</td><td>integer</td><td>Resulting value after adjusting by state HPI</td><td>894021</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_hpi_adjusted"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.</p>\n","type":"text/plain"},"key":"adjust_to_date","value":"2017-01-01"},{"description":{"content":"<p>Alternative dollar value to adjust, supplied by the caller.</p>\n","type":"text/plain"},"key":"client_value","value":"950000"},{"description":{"content":"<p>Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"</p>\n","type":"text/plain"},"key":"client_date","value":"2021-12-08"}],"variable":[]}},"response":[{"id":"e233c448-faff-491e-8ee4-871c69732129","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_hpi_adjusted?adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","host":["https://api.housecanary.com"],"path":["v2","property","value_hpi_adjusted"],"query":[{"description":"Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.","key":"adjust_to_date","value":"2017-01-01"},{"description":"Alternative dollar value to adjust, supplied by the caller.","key":"client_value","value":"950000"},{"description":"Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"","key":"client_date","value":"2021-12-08"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_hpi_adjusted\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"client_value_adjusted\": {\n          \"from_value\": 315000,\n          \"from_date\": \"2023-01-15\",\n          \"to_date\": \"2023-06-30\",\n          \"adjusted_by\": {\n            \"block\": 904022,\n            \"blockgroup\": 972028,\n            \"zip\": 984655,\n            \"msa\": 994023,\n            \"state\": 894021\n          }\n        },\n        \"housecanary_value_adjusted\": {\n          \"from_value\": 315000,\n          \"from_date\": \"2023-01-15\",\n          \"to_date\": \"2023-06-30\",\n          \"adjusted_by\": {\n            \"block\": 904022,\n            \"blockgroup\": 972028,\n            \"zip\": 984655,\n            \"msa\": 994023,\n            \"state\": 894021\n          }\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_hpi_adjusted\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"client_value_adjusted\": {\n          \"from_value\": 315000,\n          \"from_date\": \"2023-01-15\",\n          \"to_date\": \"2023-06-30\",\n          \"adjusted_by\": {\n            \"block\": 904022,\n            \"blockgroup\": 972028,\n            \"zip\": 984655,\n            \"msa\": 994023,\n            \"state\": 894021\n          }\n        },\n        \"housecanary_value_adjusted\": {\n          \"from_value\": 315000,\n          \"from_date\": \"2023-01-15\",\n          \"to_date\": \"2023-06-30\",\n          \"adjusted_by\": {\n            \"block\": 904022,\n            \"blockgroup\": 972028,\n            \"zip\": 984655,\n            \"msa\": 994023,\n            \"state\": 894021\n          }\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"de8019e9-9fc8-40cc-b306-401a295b57c6","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_hpi_adjusted?adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","host":["https://api.housecanary.com"],"path":["v2","property","value_hpi_adjusted"],"query":[{"description":"Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.","key":"adjust_to_date","value":"2017-01-01"},{"description":"Alternative dollar value to adjust, supplied by the caller.","key":"client_value","value":"950000"},{"description":"Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"","key":"client_date","value":"2021-12-08"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d5e349dc-9174-4002-9ab7-4c1f450141ff","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_hpi_adjusted?adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","host":["https://api.housecanary.com"],"path":["v2","property","value_hpi_adjusted"],"query":[{"description":"Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.","key":"adjust_to_date","value":"2017-01-01"},{"description":"Alternative dollar value to adjust, supplied by the caller.","key":"client_value","value":"950000"},{"description":"Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"","key":"client_date","value":"2021-12-08"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4695e70e-0ba1-4dbf-9018-9105a74eef5d","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_hpi_adjusted?adjust_to_date=2017-01-01&client_value=950000&client_date=2021-12-08","host":["https://api.housecanary.com"],"path":["v2","property","value_hpi_adjusted"],"query":[{"description":"Target date to adjust the value to. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\". If not supplied, defaults to the current month.","key":"adjust_to_date","value":"2017-01-01"},{"description":"Alternative dollar value to adjust, supplied by the caller.","key":"client_value","value":"950000"},{"description":"Date corresponding to the client_value. Must be the first of the month, in the ISO format, e.g. \"2017-01-01\"","key":"client_date","value":"2021-12-08"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d14722ac-622d-4616-bcad-17d4f16b5ac4"},{"name":"Value within Census Block","id":"f9b84125-efd9-4f07-9b3a-0b91d9105616","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=950000&client_value_sqft=4779.104664738267","description":"<p>Compare a property's value and value per sq ft within its block, providing context for local market positioning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n<tr><td>client_value</td><td>number</td><td>Dollar value supplied by the caller, to position within the distribution of property values within the block.</td><td>950000</td>\n        </tr>\n<tr><td>client_value_sqft</td><td>number</td><td>Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.</td><td></td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>housecanary_value_percentile_range</td><td>object</td><td>Percentile range information for the HouseCanary value.</td><td></td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.name</td><td>string</td><td>Name of the range.</td><td>80th Percentile</td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.high</td><td>integer</td><td>High percentile of the range.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.low</td><td>integer</td><td>Low percentile of the range.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range</td><td>object</td><td>Percentile range information for the HouseCanary value per square foot.</td><td></td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.name</td><td>string</td><td>Name of the range.</td><td>70th Percentile</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.high</td><td>integer</td><td>High percentile of the range.</td><td>300</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.low</td><td>integer</td><td>Low percentile of the range.</td><td>200</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range</td><td>object</td><td>Percentile range information for the client-provided value.</td><td></td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.name</td><td>string</td><td>Name of the range.</td><td>50th Percentile</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.high</td><td>integer</td><td>High percentile of the range.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.low</td><td>integer</td><td>Low percentile of the range.</td><td>280000</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range</td><td>object</td><td>Percentile range information for the client-provided value per square foot.</td><td></td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.name</td><td>string</td><td>Name of the range.</td><td>60th Percentile</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.high</td><td>integer</td><td>High percentile of the range.</td><td>280</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.low</td><td>integer</td><td>Low percentile of the range.</td><td>240</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_within_block"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Dollar value supplied by the caller, to position within the distribution of property values within the block.</p>\n","type":"text/plain"},"key":"client_value","value":"950000"},{"description":{"content":"<p>Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.</p>\n","type":"text/plain"},"key":"client_value_sqft","value":"4779.104664738267"}],"variable":[]}},"response":[{"id":"cfdcb183-3eb1-400f-9804-b5e7970f46d4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=950000&client_value_sqft=4779.104664738267","host":["https://api.housecanary.com"],"path":["v2","property","value_within_block"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Dollar value supplied by the caller, to position within the distribution of property values within the block.","key":"client_value","value":"950000"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.","key":"client_value_sqft","value":"4779.104664738267"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_within_block\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"housecanary_value_percentile_range\": {\n          \"name\": \"80th Percentile\",\n          \"high\": 400000,\n          \"low\": 300000\n        },\n        \"housecanary_value_sqft_percentile_range\": {\n          \"name\": \"70th Percentile\",\n          \"high\": 300,\n          \"low\": 200\n        },\n        \"client_value_percentile_range\": {\n          \"name\": \"50th Percentile\",\n          \"high\": 320000,\n          \"low\": 280000\n        },\n        \"client_value_sqft_percentile_range\": {\n          \"name\": \"60th Percentile\",\n          \"high\": 280,\n          \"low\": 240\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_within_block\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"housecanary_value_percentile_range\": {\n          \"name\": \"80th Percentile\",\n          \"high\": 400000,\n          \"low\": 300000\n        },\n        \"housecanary_value_sqft_percentile_range\": {\n          \"name\": \"70th Percentile\",\n          \"high\": 300,\n          \"low\": 200\n        },\n        \"client_value_percentile_range\": {\n          \"name\": \"50th Percentile\",\n          \"high\": 320000,\n          \"low\": 280000\n        },\n        \"client_value_sqft_percentile_range\": {\n          \"name\": \"60th Percentile\",\n          \"high\": 280,\n          \"low\": 240\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"1c242f64-353f-41b2-b2d9-29d76ff70e03","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=950000&client_value_sqft=4779.104664738267","host":["https://api.housecanary.com"],"path":["v2","property","value_within_block"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Dollar value supplied by the caller, to position within the distribution of property values within the block.","key":"client_value","value":"950000"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.","key":"client_value_sqft","value":"4779.104664738267"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f9ab1c5a-08b1-4cd7-8cab-2cfdcba830c3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=950000&client_value_sqft=4779.104664738267","host":["https://api.housecanary.com"],"path":["v2","property","value_within_block"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Dollar value supplied by the caller, to position within the distribution of property values within the block.","key":"client_value","value":"950000"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.","key":"client_value_sqft","value":"4779.104664738267"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"d3d09bf0-0122-4f66-8192-3000f40b587f","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/value_within_block?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&client_value=950000&client_value_sqft=4779.104664738267","host":["https://api.housecanary.com"],"path":["v2","property","value_within_block"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Dollar value supplied by the caller, to position within the distribution of property values within the block.","key":"client_value","value":"950000"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.","key":"client_value_sqft","value":"4779.104664738267"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f9b84125-efd9-4f07-9b3a-0b91d9105616"},{"name":"Value within Census Block (Batch)","id":"78f53a50-f588-4a99-83a9-138e3279c0f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/value_within_block?client_value=950000&client_value_sqft=4779.104664738267","description":"<p>Compare a property's value and value per sq ft within its block, providing context for local market positioning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>client_value</td><td>number</td><td>Dollar value supplied by the caller, to position within the distribution of property values within the block.</td><td>950000</td>\n        </tr>\n<tr><td>client_value_sqft</td><td>number</td><td>Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.</td><td></td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>housecanary_value_percentile_range</td><td>object</td><td>Percentile range information for the HouseCanary value.</td><td></td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.name</td><td>string</td><td>Name of the range.</td><td>80th Percentile</td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.high</td><td>integer</td><td>High percentile of the range.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>housecanary_value_percentile_range.low</td><td>integer</td><td>Low percentile of the range.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range</td><td>object</td><td>Percentile range information for the HouseCanary value per square foot.</td><td></td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.name</td><td>string</td><td>Name of the range.</td><td>70th Percentile</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.high</td><td>integer</td><td>High percentile of the range.</td><td>300</td>\n        <td></td></tr>\n<tr><td>housecanary_value_sqft_percentile_range.low</td><td>integer</td><td>Low percentile of the range.</td><td>200</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range</td><td>object</td><td>Percentile range information for the client-provided value.</td><td></td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.name</td><td>string</td><td>Name of the range.</td><td>50th Percentile</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.high</td><td>integer</td><td>High percentile of the range.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>client_value_percentile_range.low</td><td>integer</td><td>Low percentile of the range.</td><td>280000</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range</td><td>object</td><td>Percentile range information for the client-provided value per square foot.</td><td></td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.name</td><td>string</td><td>Name of the range.</td><td>60th Percentile</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.high</td><td>integer</td><td>High percentile of the range.</td><td>280</td>\n        <td></td></tr>\n<tr><td>client_value_sqft_percentile_range.low</td><td>integer</td><td>Low percentile of the range.</td><td>240</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","value_within_block"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Dollar value supplied by the caller, to position within the distribution of property values within the block.</p>\n","type":"text/plain"},"key":"client_value","value":"950000"},{"description":{"content":"<p>Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.</p>\n","type":"text/plain"},"key":"client_value_sqft","value":"4779.104664738267"}],"variable":[]}},"response":[{"id":"6c17f16e-379b-4d66-b561-b95930d5eebc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_within_block?client_value=950000&client_value_sqft=4779.104664738267","host":["https://api.housecanary.com"],"path":["v2","property","value_within_block"],"query":[{"description":"Dollar value supplied by the caller, to position within the distribution of property values within the block.","key":"client_value","value":"950000"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.","key":"client_value_sqft","value":"4779.104664738267"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/value_within_block\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"housecanary_value_percentile_range\": {\n          \"name\": \"80th Percentile\",\n          \"high\": 400000,\n          \"low\": 300000\n        },\n        \"housecanary_value_sqft_percentile_range\": {\n          \"name\": \"70th Percentile\",\n          \"high\": 300,\n          \"low\": 200\n        },\n        \"client_value_percentile_range\": {\n          \"name\": \"50th Percentile\",\n          \"high\": 320000,\n          \"low\": 280000\n        },\n        \"client_value_sqft_percentile_range\": {\n          \"name\": \"60th Percentile\",\n          \"high\": 280,\n          \"low\": 240\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/value_within_block\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"housecanary_value_percentile_range\": {\n          \"name\": \"80th Percentile\",\n          \"high\": 400000,\n          \"low\": 300000\n        },\n        \"housecanary_value_sqft_percentile_range\": {\n          \"name\": \"70th Percentile\",\n          \"high\": 300,\n          \"low\": 200\n        },\n        \"client_value_percentile_range\": {\n          \"name\": \"50th Percentile\",\n          \"high\": 320000,\n          \"low\": 280000\n        },\n        \"client_value_sqft_percentile_range\": {\n          \"name\": \"60th Percentile\",\n          \"high\": 280,\n          \"low\": 240\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"3d9c0723-533a-4b65-801f-d370d5dc26e4","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_within_block?client_value=950000&client_value_sqft=4779.104664738267","host":["https://api.housecanary.com"],"path":["v2","property","value_within_block"],"query":[{"description":"Dollar value supplied by the caller, to position within the distribution of property values within the block.","key":"client_value","value":"950000"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.","key":"client_value_sqft","value":"4779.104664738267"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3f563a49-c55b-4b91-92fd-fc0a8da270de","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_within_block?client_value=950000&client_value_sqft=4779.104664738267","host":["https://api.housecanary.com"],"path":["v2","property","value_within_block"],"query":[{"description":"Dollar value supplied by the caller, to position within the distribution of property values within the block.","key":"client_value","value":"950000"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.","key":"client_value_sqft","value":"4779.104664738267"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4523d611-ce10-4ae9-a1a0-3b90cbb7a92f","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/value_within_block?client_value=950000&client_value_sqft=4779.104664738267","host":["https://api.housecanary.com"],"path":["v2","property","value_within_block"],"query":[{"description":"Dollar value supplied by the caller, to position within the distribution of property values within the block.","key":"client_value","value":"950000"},{"description":"Dollar value per sq ft supplied by the caller, to position within the distribution of property values per sq ft within the block.","key":"client_value_sqft","value":"4779.104664738267"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"78f53a50-f588-4a99-83a9-138e3279c0f8"}],"id":"4c0f2cde-9503-48f0-b336-f2ed1be27457","_postman_id":"4c0f2cde-9503-48f0-b336-f2ed1be27457","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Census Block Level","item":[{"name":"Batch Multiple Endpoints","id":"5c1a132e-e238-4d6f-8e89-d906bce7dc43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/component_mget?block_id=360050001001000&components=block/hcri,block/value_ts_historical","description":"<p>The block/component_mget endpoint allows you to retrieve data from multiple Analytics API block-level endpoints in one request. Provide a comma separated list of block endpoint names in the components query parameter to specify which block endpoints you would like to include. This endpoint does not have a predefined schema because the response will depend on the specific endpoints that are included in the request.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n<tr><td>components</td><td>string</td><td>Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.</td><td>block/hcri,block/value_ts_historical</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"},{"description":{"content":"<p>Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.</p>\n","type":"text/plain"},"key":"components","value":"block/hcri,block/value_ts_historical"}],"variable":[]}},"response":[{"id":"0fb91b6d-2768-49b4-a759-5f60bffff0cb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/component_mget?block_id=360050001001000&components=block/hcri,block/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","block","component_mget"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"block/hcri,block/value_ts_historical"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"dc8a210d-e581-4521-937f-0d5001e70b55","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/component_mget?block_id=360050001001000&components=block/hcri,block/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","block","component_mget"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"block/hcri,block/value_ts_historical"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"5f5e5927-24c8-401d-b03b-a02afe52f81a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/component_mget?block_id=360050001001000&components=block/hcri,block/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","block","component_mget"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"block/hcri,block/value_ts_historical"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"5a774f21-edb5-4432-9dd5-fad4e20ce008","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/component_mget?block_id=360050001001000&components=block/hcri,block/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","block","component_mget"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"block/hcri,block/value_ts_historical"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5c1a132e-e238-4d6f-8e89-d906bce7dc43"},{"name":"Batch Multiple Endpoints (Batch)","id":"a8830983-1fa9-4350-bbe4-55aacc963669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/component_mget?components=block/hcri,block/value_ts_historical","description":"<p>The block/component_mget endpoint allows you to retrieve data from multiple Analytics API block-level endpoints in one request. Provide a comma separated list of block endpoint names in the components query parameter to specify which block endpoints you would like to include. This endpoint does not have a predefined schema because the response will depend on the specific endpoints that are included in the request.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>components</td><td>string</td><td>Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.</td><td>block/hcri,block/value_ts_historical</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.</p>\n","type":"text/plain"},"key":"components","value":"block/hcri,block/value_ts_historical"}],"variable":[]}},"response":[{"id":"68a1f709-fdab-4cec-8724-f2758da3a3a2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/component_mget?components=block/hcri,block/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","block","component_mget"],"query":[{"description":"Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"block/hcri,block/value_ts_historical"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"522feb71-1993-4750-bc9f-d66834870a45","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/component_mget?components=block/hcri,block/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","block","component_mget"],"query":[{"description":"Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"block/hcri,block/value_ts_historical"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0124367b-5d0b-4be2-9332-201cc77df86e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/component_mget?components=block/hcri,block/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","block","component_mget"],"query":[{"description":"Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"block/hcri,block/value_ts_historical"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e7fe53bd-3ab2-4761-b823-daa017d87160","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/component_mget?components=block/hcri,block/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","block","component_mget"],"query":[{"description":"Comma separated list of block endpoint names, like \"block/hcri,block/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"block/hcri,block/value_ts_historical"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a8830983-1fa9-4350-bbe4-55aacc963669"},{"name":"Crime Information","id":"f5cf2cac-74d3-414b-b861-2d7e73137987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/crime?block_id=360050001001000","description":"<p>Access crime data from the past two years near a specific block, including percentile rankings for county and nationwide comparison, enabling better understanding of local neighborhood statistics.  </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>all</td><td>object</td><td>Total crime incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>all.incidents</td><td>integer</td><td>Count of all crime incidents reported near the block</td><td>120</td>\n        </tr>\n<tr><td>all.county_percentile</td><td>integer</td><td>For all crimes, where the incident count falls within the county</td><td>75</td>\n        </tr>\n<tr><td>all.nation_percentile</td><td>integer</td><td>For all crimes, where the incident count falls within the USA</td><td>60</td>\n        </tr>\n<tr><td>property</td><td>object</td><td>Arson, burglary, or vandalism incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>property.incidents</td><td>integer</td><td>Count of arson, burglary, or vandalism incidents reported near the block</td><td>30</td>\n        </tr>\n<tr><td>property.county_percentile</td><td>integer</td><td>For arson, burglary, or vandalism incidents, where the incident count falls within the county</td><td>50</td>\n        </tr>\n<tr><td>property.nation_percentile</td><td>integer</td><td>For arson, burglary, or vandalism incidents, where the incident count falls within the USA</td><td>40</td>\n        </tr>\n<tr><td>violent</td><td>object</td><td>Assault, shooting, or robbery incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>violent.incidents</td><td>integer</td><td>Count of assault, shooting, or robbery incidents reported near the block</td><td>15</td>\n        </tr>\n<tr><td>violent.county_percentile</td><td>integer</td><td>For assault, shooting, or robbery incidents, where the incident count falls within the county</td><td>70</td>\n        </tr>\n<tr><td>violent.nation_percentile</td><td>integer</td><td>For assault, shooting, or robbery incidents, where the incident count falls within the USA</td><td>55</td>\n        </tr>\n<tr><td>other</td><td>object</td><td>Any crime incidents reported near the block that don’t fall into either the property or violent categories</td><td></td>\n        </tr>\n<tr><td>other.incidents</td><td>integer</td><td>Count of other crime incidents reported near the block</td><td>45</td>\n        </tr>\n<tr><td>other.county_percentile</td><td>integer</td><td>For other crime incidents, where the incident count falls within the county</td><td>25</td>\n        </tr>\n<tr><td>other.nation_percentile</td><td>integer</td><td>For other crime incidents, where the incident count falls within the USA</td><td>30</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","crime"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"}],"variable":[]}},"response":[{"id":"cbb60ec2-44ab-4d8e-a7e6-bc6ea96d6297","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/crime?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","crime"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/crime\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"all\": {\n          \"incidents\": 120,\n          \"county_percentile\": 75,\n          \"nation_percentile\": 60\n        },\n        \"property\": {\n          \"incidents\": 30,\n          \"county_percentile\": 50,\n          \"nation_percentile\": 40\n        },\n        \"violent\": {\n          \"incidents\": 15,\n          \"county_percentile\": 70,\n          \"nation_percentile\": 55\n        },\n        \"other\": {\n          \"incidents\": 45,\n          \"county_percentile\": 25,\n          \"nation_percentile\": 30\n        }\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/crime\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"all\": {\n          \"incidents\": 120,\n          \"county_percentile\": 75,\n          \"nation_percentile\": 60\n        },\n        \"property\": {\n          \"incidents\": 30,\n          \"county_percentile\": 50,\n          \"nation_percentile\": 40\n        },\n        \"violent\": {\n          \"incidents\": 15,\n          \"county_percentile\": 70,\n          \"nation_percentile\": 55\n        },\n        \"other\": {\n          \"incidents\": 45,\n          \"county_percentile\": 25,\n          \"nation_percentile\": 30\n        }\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"351e9f04-621e-4e73-b0cd-a73663d0bf2e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/crime?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","crime"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f10c39b0-9d31-4f32-872b-a064f002494f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/crime?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","crime"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9b2d7a3f-3450-488e-a40a-8d26b10c3afe","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/crime?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","crime"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f5cf2cac-74d3-414b-b861-2d7e73137987"},{"name":"Crime Information (Batch)","id":"c0a23020-dfce-4877-89bb-e35f0480203a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/crime","description":"<p>Access crime data from the past two years near a specific block, including percentile rankings for county and nationwide comparison, enabling better understanding of local neighborhood statistics.  </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>all</td><td>object</td><td>Total crime incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>all.incidents</td><td>integer</td><td>Count of all crime incidents reported near the block</td><td>120</td>\n        </tr>\n<tr><td>all.county_percentile</td><td>integer</td><td>For all crimes, where the incident count falls within the county</td><td>75</td>\n        </tr>\n<tr><td>all.nation_percentile</td><td>integer</td><td>For all crimes, where the incident count falls within the USA</td><td>60</td>\n        </tr>\n<tr><td>property</td><td>object</td><td>Arson, burglary, or vandalism incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>property.incidents</td><td>integer</td><td>Count of arson, burglary, or vandalism incidents reported near the block</td><td>30</td>\n        </tr>\n<tr><td>property.county_percentile</td><td>integer</td><td>For arson, burglary, or vandalism incidents, where the incident count falls within the county</td><td>50</td>\n        </tr>\n<tr><td>property.nation_percentile</td><td>integer</td><td>For arson, burglary, or vandalism incidents, where the incident count falls within the USA</td><td>40</td>\n        </tr>\n<tr><td>violent</td><td>object</td><td>Assault, shooting, or robbery incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>violent.incidents</td><td>integer</td><td>Count of assault, shooting, or robbery incidents reported near the block</td><td>15</td>\n        </tr>\n<tr><td>violent.county_percentile</td><td>integer</td><td>For assault, shooting, or robbery incidents, where the incident count falls within the county</td><td>70</td>\n        </tr>\n<tr><td>violent.nation_percentile</td><td>integer</td><td>For assault, shooting, or robbery incidents, where the incident count falls within the USA</td><td>55</td>\n        </tr>\n<tr><td>other</td><td>object</td><td>Any crime incidents reported near the block that don’t fall into either the property or violent categories</td><td></td>\n        </tr>\n<tr><td>other.incidents</td><td>integer</td><td>Count of other crime incidents reported near the block</td><td>45</td>\n        </tr>\n<tr><td>other.county_percentile</td><td>integer</td><td>For other crime incidents, where the incident count falls within the county</td><td>25</td>\n        </tr>\n<tr><td>other.nation_percentile</td><td>integer</td><td>For other crime incidents, where the incident count falls within the USA</td><td>30</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","crime"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"b644f46a-d78c-407d-b59d-87de104bb685","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/crime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/crime\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"all\": {\n          \"incidents\": 120,\n          \"county_percentile\": 75,\n          \"nation_percentile\": 60\n        },\n        \"property\": {\n          \"incidents\": 30,\n          \"county_percentile\": 50,\n          \"nation_percentile\": 40\n        },\n        \"violent\": {\n          \"incidents\": 15,\n          \"county_percentile\": 70,\n          \"nation_percentile\": 55\n        },\n        \"other\": {\n          \"incidents\": 45,\n          \"county_percentile\": 25,\n          \"nation_percentile\": 30\n        }\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/crime\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"all\": {\n          \"incidents\": 120,\n          \"county_percentile\": 75,\n          \"nation_percentile\": 60\n        },\n        \"property\": {\n          \"incidents\": 30,\n          \"county_percentile\": 50,\n          \"nation_percentile\": 40\n        },\n        \"violent\": {\n          \"incidents\": 15,\n          \"county_percentile\": 70,\n          \"nation_percentile\": 55\n        },\n        \"other\": {\n          \"incidents\": 45,\n          \"county_percentile\": 25,\n          \"nation_percentile\": 30\n        }\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"abbc90ea-12f2-4b26-86d8-4b78067b4933","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/crime"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0e8ac6a9-4edc-4a75-a810-9d3d115a9366","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/crime"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ccfcada1-fc5a-4fcb-bd79-9f5aa62f42ca","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/crime"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c0a23020-dfce-4877-89bb-e35f0480203a"},{"name":"Crime Information From Address","id":"dc41c34f-7ba7-4d3c-9f3c-ac6fc64ebeda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_crime?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Access crime data from the past two years near a specific block, including percentile rankings for county and nationwide comparison, enabling better understanding of local neighborhood statistics.  </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>all</td><td>object</td><td>Total crime incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>all.incidents</td><td>integer</td><td>Count of all crime incidents reported near the block</td><td>120</td>\n        </tr>\n<tr><td>all.county_percentile</td><td>integer</td><td>For all crimes, where the incident count falls within the county</td><td>75</td>\n        </tr>\n<tr><td>all.nation_percentile</td><td>integer</td><td>For all crimes, where the incident count falls within the USA</td><td>60</td>\n        </tr>\n<tr><td>property</td><td>object</td><td>Arson, burglary, or vandalism incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>property.incidents</td><td>integer</td><td>Count of arson, burglary, or vandalism incidents reported near the block</td><td>30</td>\n        </tr>\n<tr><td>property.county_percentile</td><td>integer</td><td>For arson, burglary, or vandalism incidents, where the incident count falls within the county</td><td>50</td>\n        </tr>\n<tr><td>property.nation_percentile</td><td>integer</td><td>For arson, burglary, or vandalism incidents, where the incident count falls within the USA</td><td>40</td>\n        </tr>\n<tr><td>violent</td><td>object</td><td>Assault, shooting, or robbery incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>violent.incidents</td><td>integer</td><td>Count of assault, shooting, or robbery incidents reported near the block</td><td>15</td>\n        </tr>\n<tr><td>violent.county_percentile</td><td>integer</td><td>For assault, shooting, or robbery incidents, where the incident count falls within the county</td><td>70</td>\n        </tr>\n<tr><td>violent.nation_percentile</td><td>integer</td><td>For assault, shooting, or robbery incidents, where the incident count falls within the USA</td><td>55</td>\n        </tr>\n<tr><td>other</td><td>object</td><td>Any crime incidents reported near the block that don’t fall into either the property or violent categories</td><td></td>\n        </tr>\n<tr><td>other.incidents</td><td>integer</td><td>Count of other crime incidents reported near the block</td><td>45</td>\n        </tr>\n<tr><td>other.county_percentile</td><td>integer</td><td>For other crime incidents, where the incident count falls within the county</td><td>25</td>\n        </tr>\n<tr><td>other.nation_percentile</td><td>integer</td><td>For other crime incidents, where the incident count falls within the USA</td><td>30</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_crime"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"9dccaf0c-b9c5-4982-8df2-70def8d32e42","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_crime?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_crime"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_crime\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"all\": {\n          \"incidents\": 120,\n          \"county_percentile\": 75,\n          \"nation_percentile\": 60\n        },\n        \"property\": {\n          \"incidents\": 30,\n          \"county_percentile\": 50,\n          \"nation_percentile\": 40\n        },\n        \"violent\": {\n          \"incidents\": 15,\n          \"county_percentile\": 70,\n          \"nation_percentile\": 55\n        },\n        \"other\": {\n          \"incidents\": 45,\n          \"county_percentile\": 25,\n          \"nation_percentile\": 30\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_crime\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"all\": {\n          \"incidents\": 120,\n          \"county_percentile\": 75,\n          \"nation_percentile\": 60\n        },\n        \"property\": {\n          \"incidents\": 30,\n          \"county_percentile\": 50,\n          \"nation_percentile\": 40\n        },\n        \"violent\": {\n          \"incidents\": 15,\n          \"county_percentile\": 70,\n          \"nation_percentile\": 55\n        },\n        \"other\": {\n          \"incidents\": 45,\n          \"county_percentile\": 25,\n          \"nation_percentile\": 30\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b3439e7f-55b2-4d44-95e6-b682deb498f3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_crime?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_crime"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e8269f31-0079-4d0c-ac92-2f9348d1f43a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_crime?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_crime"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"30aaf365-7f15-4ec6-af5e-d58682bbf599","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_crime?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_crime"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"dc41c34f-7ba7-4d3c-9f3c-ac6fc64ebeda"},{"name":"Crime Information From Address (Batch)","id":"8911f0ff-e925-4512-a707-848eb3a5874a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_crime","description":"<p>Access crime data from the past two years near a specific block, including percentile rankings for county and nationwide comparison, enabling better understanding of local neighborhood statistics.  </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>all</td><td>object</td><td>Total crime incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>all.incidents</td><td>integer</td><td>Count of all crime incidents reported near the block</td><td>120</td>\n        </tr>\n<tr><td>all.county_percentile</td><td>integer</td><td>For all crimes, where the incident count falls within the county</td><td>75</td>\n        </tr>\n<tr><td>all.nation_percentile</td><td>integer</td><td>For all crimes, where the incident count falls within the USA</td><td>60</td>\n        </tr>\n<tr><td>property</td><td>object</td><td>Arson, burglary, or vandalism incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>property.incidents</td><td>integer</td><td>Count of arson, burglary, or vandalism incidents reported near the block</td><td>30</td>\n        </tr>\n<tr><td>property.county_percentile</td><td>integer</td><td>For arson, burglary, or vandalism incidents, where the incident count falls within the county</td><td>50</td>\n        </tr>\n<tr><td>property.nation_percentile</td><td>integer</td><td>For arson, burglary, or vandalism incidents, where the incident count falls within the USA</td><td>40</td>\n        </tr>\n<tr><td>violent</td><td>object</td><td>Assault, shooting, or robbery incidents reported near the block</td><td></td>\n        </tr>\n<tr><td>violent.incidents</td><td>integer</td><td>Count of assault, shooting, or robbery incidents reported near the block</td><td>15</td>\n        </tr>\n<tr><td>violent.county_percentile</td><td>integer</td><td>For assault, shooting, or robbery incidents, where the incident count falls within the county</td><td>70</td>\n        </tr>\n<tr><td>violent.nation_percentile</td><td>integer</td><td>For assault, shooting, or robbery incidents, where the incident count falls within the USA</td><td>55</td>\n        </tr>\n<tr><td>other</td><td>object</td><td>Any crime incidents reported near the block that don’t fall into either the property or violent categories</td><td></td>\n        </tr>\n<tr><td>other.incidents</td><td>integer</td><td>Count of other crime incidents reported near the block</td><td>45</td>\n        </tr>\n<tr><td>other.county_percentile</td><td>integer</td><td>For other crime incidents, where the incident count falls within the county</td><td>25</td>\n        </tr>\n<tr><td>other.nation_percentile</td><td>integer</td><td>For other crime incidents, where the incident count falls within the USA</td><td>30</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_crime"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"f3a44cf6-a33d-496b-9639-936e58b54013","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_crime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_crime\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"all\": {\n          \"incidents\": 120,\n          \"county_percentile\": 75,\n          \"nation_percentile\": 60\n        },\n        \"property\": {\n          \"incidents\": 30,\n          \"county_percentile\": 50,\n          \"nation_percentile\": 40\n        },\n        \"violent\": {\n          \"incidents\": 15,\n          \"county_percentile\": 70,\n          \"nation_percentile\": 55\n        },\n        \"other\": {\n          \"incidents\": 45,\n          \"county_percentile\": 25,\n          \"nation_percentile\": 30\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_crime\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"all\": {\n          \"incidents\": 120,\n          \"county_percentile\": 75,\n          \"nation_percentile\": 60\n        },\n        \"property\": {\n          \"incidents\": 30,\n          \"county_percentile\": 50,\n          \"nation_percentile\": 40\n        },\n        \"violent\": {\n          \"incidents\": 15,\n          \"county_percentile\": 70,\n          \"nation_percentile\": 55\n        },\n        \"other\": {\n          \"incidents\": 45,\n          \"county_percentile\": 25,\n          \"nation_percentile\": 30\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"85c3f7d0-b581-461b-abf9-9d2316333bbd","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_crime"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0ab1bb41-3bfc-4bcf-a969-94b506fbac9f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_crime"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"7ee5604b-d192-483b-a780-d6e3296d10d2","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_crime"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"8911f0ff-e925-4512-a707-848eb3a5874a"},{"name":"Earthquake Risk","id":"47b341b0-5d09-4835-b80a-056cad13c486","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/hazard_earthquake?block_id=360050001001000","description":"<p>This endpoint provides information on earthquake risk from the US Geological Survey for a specific block. It returns peak horizontal ground acceleration values with a 10% probability of being exceeded in the next 50 years. Percentile values within the county and entire US are provided for context. </p>\n<p>Source: USGS Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>max_percent_g</td><td>number</td><td>Peak horizontal ground acceleration with a 10% probability of being exceeded in the next 50 years. Values are given in %g, where g is acceleration due to gravity, or 9.8 meters/second^2.</td><td>0.45</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the max_percent_g falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>75</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the max_percent_g falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>60</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_earthquake"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"}],"variable":[]}},"response":[{"id":"4f7d31c1-1168-4f00-960a-1352e605690e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_earthquake?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_earthquake"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_earthquake\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"max_percent_g\": 0.45,\n        \"county_percentile\": 75,\n        \"nation_percentile\": 60\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_earthquake\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"max_percent_g\": 0.45,\n        \"county_percentile\": 75,\n        \"nation_percentile\": 60\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"72720a42-af24-4113-a1e8-b27ee4d030ae","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_earthquake?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_earthquake"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3ca319b5-dda8-4f5e-8b05-4234fd3d994a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_earthquake?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_earthquake"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"afd11d86-c8d7-42ab-b3c3-d4a9a5722720","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_earthquake?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_earthquake"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"47b341b0-5d09-4835-b80a-056cad13c486"},{"name":"Earthquake Risk (Batch)","id":"3b37a4ea-a098-4975-a89e-9285d47eb787","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_earthquake","description":"<p>This endpoint provides information on earthquake risk from the US Geological Survey for a specific block. It returns peak horizontal ground acceleration values with a 10% probability of being exceeded in the next 50 years. Percentile values within the county and entire US are provided for context. </p>\n<p>Source: USGS Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>max_percent_g</td><td>number</td><td>Peak horizontal ground acceleration with a 10% probability of being exceeded in the next 50 years. Values are given in %g, where g is acceleration due to gravity, or 9.8 meters/second^2.</td><td>0.45</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the max_percent_g falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>75</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the max_percent_g falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>60</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_earthquake"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"b8d38bca-2da1-4587-b45b-9afb4be23e26","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_earthquake"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_earthquake\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"max_percent_g\": 0.45,\n        \"county_percentile\": 75,\n        \"nation_percentile\": 60\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_earthquake\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"max_percent_g\": 0.45,\n        \"county_percentile\": 75,\n        \"nation_percentile\": 60\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"7885e13d-d60b-436f-bc44-e0ca0aa22ada","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_earthquake"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d2edcd00-8726-44f5-b7f8-d3c822008349","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_earthquake"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"800b8193-81e5-4d8f-a648-9ac8fb243b5f","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_earthquake"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"3b37a4ea-a098-4975-a89e-9285d47eb787"},{"name":"Earthquake Risk From Address","id":"01044efe-1518-4229-b4df-048ab9b2144c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_hazard_earthquake?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>This endpoint provides information on earthquake risk from the US Geological Survey for a specific block. It returns peak horizontal ground acceleration values with a 10% probability of being exceeded in the next 50 years. Percentile values within the county and entire US are provided for context. </p>\n<p>Source: USGS Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>max_percent_g</td><td>number</td><td>Peak horizontal ground acceleration with a 10% probability of being exceeded in the next 50 years. Values are given in %g, where g is acceleration due to gravity, or 9.8 meters/second^2.</td><td>0.45</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the max_percent_g falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>75</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the max_percent_g falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>60</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_earthquake"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"5033d789-c46c-404c-ae9f-bb39346be47b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_earthquake?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_earthquake"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_earthquake\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"max_percent_g\": 0.45,\n        \"county_percentile\": 75,\n        \"nation_percentile\": 60\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_earthquake\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"max_percent_g\": 0.45,\n        \"county_percentile\": 75,\n        \"nation_percentile\": 60\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"aa5f43b4-4665-49dc-9f70-6e6ff4c9d658","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_earthquake?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_earthquake"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0bc1f9c0-a3df-477b-87de-f88de7f579c9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_earthquake?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_earthquake"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f9798859-9fc3-4a7c-b5d0-2fbe5c0f12a7","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_earthquake?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_earthquake"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"01044efe-1518-4229-b4df-048ab9b2144c"},{"name":"Earthquake Risk From Address (Batch)","id":"007d63b3-b2bc-44ad-b69a-cbd96f14adb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_earthquake","description":"<p>This endpoint provides information on earthquake risk from the US Geological Survey for a specific block. It returns peak horizontal ground acceleration values with a 10% probability of being exceeded in the next 50 years. Percentile values within the county and entire US are provided for context. </p>\n<p>Source: USGS Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>max_percent_g</td><td>number</td><td>Peak horizontal ground acceleration with a 10% probability of being exceeded in the next 50 years. Values are given in %g, where g is acceleration due to gravity, or 9.8 meters/second^2.</td><td>0.45</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the max_percent_g falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>75</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the max_percent_g falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>60</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_earthquake"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"b7fc89df-c814-4ea7-b0ff-f576cb9dee51","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_earthquake"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_earthquake\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"max_percent_g\": 0.45,\n        \"county_percentile\": 75,\n        \"nation_percentile\": 60\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_earthquake\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"max_percent_g\": 0.45,\n        \"county_percentile\": 75,\n        \"nation_percentile\": 60\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"2476b342-4caa-413a-9efc-c07deaafdbf8","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_earthquake"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e2d163ac-c881-4757-8278-b91b1a4acf3e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_earthquake"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"cf6d20b6-6214-4510-9d72-5ecd170f2017","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_earthquake"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"007d63b3-b2bc-44ad-b69a-cbd96f14adb7"},{"name":"Hail Activity","id":"ce3f7429-d5e9-4c29-828d-9c21d88eda28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/hazard_hail?block_id=360050001001000","description":"<p>Obtain a historical overview of hailstorm activity near a block, with percentile rankings for county and US comparison. Data sourced from the National Oceanic and Atmospheric Administration. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all hailstorms recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_hail"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"}],"variable":[]}},"response":[{"id":"06d8c85a-adf6-45cf-bfcf-4844bfb0b6c7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_hail?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_hail"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_hail\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_hail\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"81889faa-7e95-4531-9993-63bc398faefe","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_hail?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_hail"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"71d9b0ad-2ac8-48a3-b1c2-df0cc74d1bd8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_hail?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_hail"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0d611596-273e-4939-b376-8908a92ec0c6","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_hail?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_hail"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"ce3f7429-d5e9-4c29-828d-9c21d88eda28"},{"name":"Hail Activity (Batch)","id":"f1eb7b72-89a8-46d1-beef-45fde85a803d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hail","description":"<p>Obtain a historical overview of hailstorm activity near a block, with percentile rankings for county and US comparison. Data sourced from the National Oceanic and Atmospheric Administration. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all hailstorms recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_hail"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"b0ec0d0a-fe29-4f4a-9e00-6ec17af13ca0","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hail"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_hail\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_hail\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"c9bfaa57-6b1d-4a7b-9c4c-bb1f6035f197","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hail"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"46f831a5-e59e-4a25-bd23-7e376738629d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hail"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"aeb13315-c36e-4b2a-be08-e77a7b52b251","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hail"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f1eb7b72-89a8-46d1-beef-45fde85a803d"},{"name":"Hail Activity From Address","id":"50e56bfd-c9e1-49c2-9b32-611015084536","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_hazard_hail?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Obtain a historical overview of hailstorm activity near a block, with percentile rankings for county and US comparison. Data sourced from the National Oceanic and Atmospheric Administration. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all hailstorms recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_hail"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"22da8e13-5cda-402d-afc7-0ed0d41e2651","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_hail?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_hail"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_hail\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_hail\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"e9ad0d6d-1e3d-4167-8500-39e62265fc16","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_hail?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_hail"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"fdf8817b-691e-4f70-a97f-8e88c0791cac","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_hail?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_hail"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"7adc0d70-d44b-4d2f-bc29-70c504b89df6","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_hail?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_hail"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"50e56bfd-c9e1-49c2-9b32-611015084536"},{"name":"Hail Activity From Address (Batch)","id":"e2096621-8147-418f-94f4-3d036d160eaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hail","description":"<p>Obtain a historical overview of hailstorm activity near a block, with percentile rankings for county and US comparison. Data sourced from the National Oceanic and Atmospheric Administration. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all hailstorms recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_hail"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"84d2fb5a-cb82-4585-9de8-c71331c04ab5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hail"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_hail\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_hail\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b0a0c9a3-8e96-4502-b121-2509d2cbc2a9","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hail"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"862a6fe5-972d-44bf-9b71-98da7d05a8ba","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hail"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2fe21cc7-1db5-45ae-9ceb-46f7faf92f62","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hail"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e2096621-8147-418f-94f4-3d036d160eaf"},{"name":"Hurricane Activity","id":"2b55269a-35bc-45a2-8361-5a8d67261026","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/hazard_hurricane?block_id=360050001001000","description":"<p>Review historical hurricane activity near a block through 2016, with percentile rankings for county and US context. Data is sourced from NOAA (excluding 2017 data) for a comprehensive understanding of potential hurricane threats. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all hurricanes recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_hurricane"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"}],"variable":[]}},"response":[{"id":"821f1db9-46ee-4588-9cd6-882f2281fa64","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_hurricane?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_hurricane"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_hurricane\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_hurricane\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"54605c89-6044-49c3-9438-8419f4a92f68","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_hurricane?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_hurricane"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"02d45707-dc7a-4f7d-8dda-91f645409f75","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_hurricane?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_hurricane"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6c3af24e-f6e9-4ad6-9ade-717e63b8ce7f","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_hurricane?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_hurricane"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2b55269a-35bc-45a2-8361-5a8d67261026"},{"name":"Hurricane Activity (Batch)","id":"e33ae6bb-34f5-40ce-81aa-1fa14dba14d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hurricane","description":"<p>Review historical hurricane activity near a block through 2016, with percentile rankings for county and US context. Data is sourced from NOAA (excluding 2017 data) for a comprehensive understanding of potential hurricane threats. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all hurricanes recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_hurricane"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"803a9e1f-30f9-4edb-b406-475ac4abbb39","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hurricane"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_hurricane\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_hurricane\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"95f4b63c-c6b0-4523-b05f-8a1a97f41f28","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hurricane"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c5fb204d-753f-47f5-91f6-9c3ed7513265","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hurricane"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"16146760-67be-4c3b-b04f-9575cc1df914","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_hurricane"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e33ae6bb-34f5-40ce-81aa-1fa14dba14d8"},{"name":"Hurricane Activity From Address","id":"06d48926-7043-4e87-af4a-2d8cc57cf033","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_hazard_hurricane?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Review historical hurricane activity near a block through 2016, with percentile rankings for county and US context. Data is sourced from NOAA (excluding 2017 data) for a comprehensive understanding of potential hurricane threats. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all hurricanes recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_hurricane"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"1276d054-54b2-40ca-bba0-43bc27558320","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_hurricane?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_hurricane"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_hurricane\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_hurricane\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"d2c1d3ac-8908-4b4b-a0a4-dc6ba4de5b66","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_hurricane?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_hurricane"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"5392f916-4d41-4bcb-93fd-8fceb909b1e0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_hurricane?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_hurricane"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4af13cce-23a6-422e-8407-8447539d0ec9","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_hurricane?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_hurricane"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"06d48926-7043-4e87-af4a-2d8cc57cf033"},{"name":"Hurricane Activity From Address (Batch)","id":"851150ab-f0f2-4edb-91f5-64fede71a699","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hurricane","description":"<p>Review historical hurricane activity near a block through 2016, with percentile rankings for county and US context. Data is sourced from NOAA (excluding 2017 data) for a comprehensive understanding of potential hurricane threats. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all hurricanes recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_hurricane"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"9579dc9d-23f8-4c12-b332-41436cc86df1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hurricane"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_hurricane\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_hurricane\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"81143c50-8723-40c5-9a1f-7c36ebb8252a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hurricane"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"187589ea-c491-4de2-8fbb-2833ee0e351d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hurricane"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"edcc4b28-37db-4f90-b8ec-f90ceb81dcfe","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_hurricane"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"851150ab-f0f2-4edb-91f5-64fede71a699"},{"name":"Tornado Activity","id":"800f47d7-a14c-4ff1-b9af-0edd86f1fbf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/hazard_tornado?block_id=360050001001000","description":"<p>Analyze historical tornado activity in a block's vicinity, including percentile rankings for county and nationwide comparison. Leverage NOAA data to assess potential tornado risks in the area. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all tornadoes recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_tornado"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"}],"variable":[]}},"response":[{"id":"515232db-78f7-4df1-ba7c-76f4dc8b89ba","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_tornado?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_tornado"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_tornado\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_tornado\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"ced9a915-a977-465a-927a-6542cc52dadb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_tornado?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_tornado"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4bc9332a-5561-476e-85db-9554153707a9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_tornado?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_tornado"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"43497d52-ab9b-4ddb-b3b7-1bbf27809c7b","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_tornado?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_tornado"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"800f47d7-a14c-4ff1-b9af-0edd86f1fbf5"},{"name":"Tornado Activity (Batch)","id":"054f460d-2883-496b-a997-09422d19c4cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_tornado","description":"<p>Analyze historical tornado activity in a block's vicinity, including percentile rankings for county and nationwide comparison. Leverage NOAA data to assess potential tornado risks in the area. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all tornadoes recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_tornado"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"86f82e8e-6db2-478f-958a-0cf31fb3e0cd","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_tornado"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_tornado\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_tornado\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"e3bdcfbd-cbcb-41b0-8d94-e0f1c54d9a95","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_tornado"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"784c0e94-2e09-4cdf-90ce-934d4906334e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_tornado"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"07f0ec6a-7f52-4465-9d35-6b41883cc04c","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_tornado"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"054f460d-2883-496b-a997-09422d19c4cc"},{"name":"Tornado Activity From Address","id":"ce5b5e52-df0d-4c86-a3b6-c84e0ff67288","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_hazard_tornado?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Analyze historical tornado activity in a block's vicinity, including percentile rankings for county and nationwide comparison. Leverage NOAA data to assess potential tornado risks in the area. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all tornadoes recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_tornado"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"11f83d56-afad-437a-8dcd-86288e32efcf","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_tornado?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_tornado"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_tornado\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_tornado\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"bd1a2e7d-036c-4b0d-b21f-3cb44b0f9abf","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_tornado?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_tornado"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0556dd71-6e61-4724-af8e-dde66a84093a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_tornado?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_tornado"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f95276a6-f5d7-440b-9aa8-cfaaa068458c","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_tornado?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_tornado"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"ce5b5e52-df0d-4c86-a3b6-c84e0ff67288"},{"name":"Tornado Activity From Address (Batch)","id":"d89459a0-7b68-489a-ac69-f2f65e36423b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_tornado","description":"<p>Analyze historical tornado activity in a block's vicinity, including percentile rankings for county and nationwide comparison. Leverage NOAA data to assess potential tornado risks in the area. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all tornadoes recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_tornado"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"814650a4-bf69-45cd-9c27-47c9adc3a1b6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_tornado"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_tornado\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_tornado\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"404ed648-0b8f-4e64-8339-f11bdcbed7e7","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_tornado"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f1f3422a-a0f9-4075-a3c2-8c1c874ccc42","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_tornado"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9210ef37-a3f2-4f9b-88ec-2516bcf9b330","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_tornado"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d89459a0-7b68-489a-ac69-f2f65e36423b"},{"name":"Windstorm Activity","id":"d8b8a9e1-0c8f-43f0-9ba5-82cadb0ba12f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/hazard_wind?block_id=360050001001000","description":"<p>Evaluate historical windstorm activity near a block, including county and US percentile rankings. Use NOAA data to determine potential wind-related hazards in the area. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all windstorms recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_wind"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"}],"variable":[]}},"response":[{"id":"19927db0-f663-440c-80d5-3eaaf635f29c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_wind?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_wind"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_wind\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_wind\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"5c0d64dc-46ee-4531-ac18-a120d854add7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_wind?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_wind"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"001e860c-866f-44b8-b3fc-33993f15014d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_wind?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_wind"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1086dce9-6a81-4af6-927e-3e73ac53e991","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hazard_wind?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","hazard_wind"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d8b8a9e1-0c8f-43f0-9ba5-82cadb0ba12f"},{"name":"Windstorm Activity (Batch)","id":"662cb90e-5bec-411e-8a3b-0a3fc144bf86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_wind","description":"<p>Evaluate historical windstorm activity near a block, including county and US percentile rankings. Use NOAA data to determine potential wind-related hazards in the area. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all windstorms recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hazard_wind"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"84595ef9-8c22-46f0-a2d7-793291c47a4e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_wind"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hazard_wind\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hazard_wind\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"c62a78be-8bec-4f52-8f89-1117550a2412","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_wind"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4c0bc978-c8b9-4669-9dee-24581b589c13","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_wind"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c240ff2d-c670-4a1c-95e7-6cc8a79090e2","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hazard_wind"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"662cb90e-5bec-411e-8a3b-0a3fc144bf86"},{"name":"Windstorm Activity From Address","id":"170050d0-ae47-44e2-8fcf-7658054387d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_hazard_wind?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Evaluate historical windstorm activity near a block, including county and US percentile rankings. Use NOAA data to determine potential wind-related hazards in the area. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all windstorms recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_wind"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"436063ee-f7a9-40f9-82f2-dbef983a785f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_wind?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_wind"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_wind\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_wind\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"a7a2339d-e8fe-490a-92d2-c61b556a83ad","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_wind?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_wind"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"da628605-c3e0-48ea-80e5-27918ebcf3fb","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_wind?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_wind"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9e05d55c-6c1a-4b01-9e43-b60ab48562da","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hazard_wind?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_hazard_wind"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"170050d0-ae47-44e2-8fcf-7658054387d8"},{"name":"Windstorm Activity From Address (Batch)","id":"c0bdbfa3-f1f4-48d6-8c2b-0813519fcbc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_wind","description":"<p>Evaluate historical windstorm activity near a block, including county and US percentile rankings. Use NOAA data to determine potential wind-related hazards in the area. </p>\n<p>Source: NOAA Data, HouseCanary Analysis </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>accumulated_energy</td><td>number</td><td>Estimated total accumulated energy from all windstorms recorded near the block.</td><td>3500.75</td>\n        </tr>\n<tr><td>county_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the county. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>80</td>\n        </tr>\n<tr><td>nation_percentile</td><td>integer</td><td>Where the accumulated energy score falls within the USA. Percentile values range from 0 to 100, with higher values indicating greater risk.</td><td>70</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hazard_wind"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"17533de7-d2ea-41a5-a85b-80c5371d6a71","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_wind"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hazard_wind\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hazard_wind\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"accumulated_energy\": 3500.75,\n        \"county_percentile\": 80,\n        \"nation_percentile\": 70\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"a9211f7e-74cf-498f-9b7f-607b6c35b729","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_wind"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4e35d2eb-e9d0-4956-a0c5-fbbae17b00ec","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_wind"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"d1ba1141-15c3-497d-bfd8-19397ea3961a","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hazard_wind"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c0bdbfa3-f1f4-48d6-8c2b-0813519fcbc0"},{"name":"Gross Rental Yield","id":"c5a9c5c1-6c9c-4acf-a7af-49d515cfd43b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/hcri?block_id=360050001001000&property_type=TH","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a block, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the monthly rental AVM * 12 / sale price AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        <td></td></tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        <td></td></tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"TH"}],"variable":[]}},"response":[{"id":"3dadaa96-e828-47d8-9d24-8947080863ee","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hcri?block_id=360050001001000&property_type=TH","host":["https://api.housecanary.com"],"path":["v2","block","hcri"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"35d18178-45a8-4e37-a4ce-27203e6071a5","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hcri?block_id=360050001001000&property_type=TH","host":["https://api.housecanary.com"],"path":["v2","block","hcri"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a0e70d3d-0b79-448a-b246-78062c806d6a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hcri?block_id=360050001001000&property_type=TH","host":["https://api.housecanary.com"],"path":["v2","block","hcri"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2f75d71a-ec78-42ac-8af9-aae103b04af1","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/hcri?block_id=360050001001000&property_type=TH","host":["https://api.housecanary.com"],"path":["v2","block","hcri"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c5a9c5c1-6c9c-4acf-a7af-49d515cfd43b"},{"name":"Gross Rental Yield (Batch)","id":"97ca52de-d59b-4eb3-9fa7-a9e60b7567e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/hcri?property_type=TH","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a block, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the monthly rental AVM * 12 / sale price AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        <td></td></tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        <td></td></tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"TH"}],"variable":[]}},"response":[{"id":"07758ca2-0c8c-4d98-9225-82fd09fa5c0e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/hcri?property_type=TH","host":["https://api.housecanary.com"],"path":["v2","block","hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"cb5b9383-7ce9-4c2a-b8ef-519dec8348dd","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/hcri?property_type=TH","host":["https://api.housecanary.com"],"path":["v2","block","hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"9d75a5bb-6275-4db6-aa9e-13a4fce28525","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/hcri?property_type=TH","host":["https://api.housecanary.com"],"path":["v2","block","hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"90e1797c-18ab-475f-8e13-0b4c36b2f19a","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/hcri?property_type=TH","host":["https://api.housecanary.com"],"path":["v2","block","hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"97ca52de-d59b-4eb3-9fa7-a9e60b7567e8"},{"name":"Gross Rental Yield From Address","id":"fc4b16de-ad15-45bd-b1ed-791d59e52c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=TH","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a block, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the monthly rental AVM * 12 / sale price AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        <td></td></tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        <td></td></tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"TH"}],"variable":[]}},"response":[{"id":"8c42fc91-48fe-468e-9464-5bc455768062","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=TH","host":["https://api.housecanary.com"],"path":["v2","property","block_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"daf5c893-f178-4213-8a63-016373c7afe0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=TH","host":["https://api.housecanary.com"],"path":["v2","property","block_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"61ac2f55-0c15-4bc6-bb34-d1e30ba24ac8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=TH","host":["https://api.housecanary.com"],"path":["v2","property","block_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"3e34e747-68ac-40ed-97fa-9119b23e6290","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=TH","host":["https://api.housecanary.com"],"path":["v2","property","block_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"fc4b16de-ad15-45bd-b1ed-791d59e52c3d"},{"name":"Gross Rental Yield From Address (Batch)","id":"0c25071c-ac4d-4ffb-be4f-1743f3026e6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_hcri?property_type=TH","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a block, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the monthly rental AVM * 12 / sale price AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        <td></td></tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        <td></td></tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"TH"}],"variable":[]}},"response":[{"id":"06188264-2b65-4515-9d6c-9111c61b5e7e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_hcri?property_type=TH","host":["https://api.housecanary.com"],"path":["v2","property","block_hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"7d2dfc93-36e3-4165-9993-fb1be90cbf6e","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_hcri?property_type=TH","host":["https://api.housecanary.com"],"path":["v2","property","block_hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3999ad7f-ab6c-43bb-8053-0d0253157e22","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_hcri?property_type=TH","host":["https://api.housecanary.com"],"path":["v2","property","block_hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9e3fb40d-5c9d-4598-a400-0699d1c5c7b7","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_hcri?property_type=TH","host":["https://api.housecanary.com"],"path":["v2","property","block_hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"TH"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0c25071c-ac4d-4ffb-be4f-1743f3026e6f"},{"name":"Rental Value Distribution","id":"86b7cfb9-f094-4057-ba94-24aa5863dcaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/rental_value_distribution?block_id=360050001001000&property_type=SFD","description":"<p>Examine the distribution of monthly rental values and monthly per sq ft rental values within a block, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive rental market overview at the block level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Price standard deviation.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties analyzed for price distribution.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_sqft_5</td><td>number</td><td>Price per square foot at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_sqft_25</td><td>number</td><td>Price per square foot at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_sqft_50</td><td>number</td><td>Median price per square foot.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_sqft_75</td><td>number</td><td>Price per square foot at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_sqft_95</td><td>number</td><td>Price per square foot at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_sqft_min</td><td>number</td><td>Minimum price per square foot.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_sqft_max</td><td>number</td><td>Maximum price per square foot.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_sqft_mean</td><td>number</td><td>Mean price per square foot.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_sqft_sd</td><td>number</td><td>Price per square foot standard deviation.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_sqft_count</td><td>integer</td><td>Number of properties analyzed for price per square foot distribution.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","rental_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"3cd0b1b9-a8ad-4ab9-bc1a-cb40da9baba1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/rental_value_distribution?block_id=360050001001000&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","rental_value_distribution"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"47f9e2f0-bb0d-47cc-b35c-c0e085874396","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/rental_value_distribution?block_id=360050001001000&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","rental_value_distribution"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1d6e094d-7965-4a23-b9bc-1af9f41b0668","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/rental_value_distribution?block_id=360050001001000&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","rental_value_distribution"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6bd995cf-bc7c-4ac1-b3f6-f1696d0a5e18","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/rental_value_distribution?block_id=360050001001000&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","rental_value_distribution"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"86b7cfb9-f094-4057-ba94-24aa5863dcaf"},{"name":"Rental Value Distribution (Batch)","id":"bcc0681d-4a35-4e58-8fc1-fce176672f20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/rental_value_distribution?property_type=SFD","description":"<p>Examine the distribution of monthly rental values and monthly per sq ft rental values within a block, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive rental market overview at the block level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Price standard deviation.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties analyzed for price distribution.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_sqft_5</td><td>number</td><td>Price per square foot at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_sqft_25</td><td>number</td><td>Price per square foot at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_sqft_50</td><td>number</td><td>Median price per square foot.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_sqft_75</td><td>number</td><td>Price per square foot at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_sqft_95</td><td>number</td><td>Price per square foot at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_sqft_min</td><td>number</td><td>Minimum price per square foot.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_sqft_max</td><td>number</td><td>Maximum price per square foot.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_sqft_mean</td><td>number</td><td>Mean price per square foot.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_sqft_sd</td><td>number</td><td>Price per square foot standard deviation.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_sqft_count</td><td>integer</td><td>Number of properties analyzed for price per square foot distribution.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","rental_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"523dd1d1-d209-4714-bdba-99be354260e9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"4e3153df-81bd-44cf-a9eb-7bc03d2b88b3","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"80bdb143-5c8c-43cb-bab8-b652f8f485bb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"50ebe5e3-851a-48fd-b931-001a098bff96","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"bcc0681d-4a35-4e58-8fc1-fce176672f20"},{"name":"Rental Value Distribution From Address","id":"09222c44-5512-4a51-aa91-df588290347c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","description":"<p>Examine the distribution of monthly rental values and monthly per sq ft rental values within a block, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive rental market overview at the block level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Price standard deviation.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties analyzed for price distribution.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_sqft_5</td><td>number</td><td>Price per square foot at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_sqft_25</td><td>number</td><td>Price per square foot at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_sqft_50</td><td>number</td><td>Median price per square foot.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_sqft_75</td><td>number</td><td>Price per square foot at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_sqft_95</td><td>number</td><td>Price per square foot at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_sqft_min</td><td>number</td><td>Minimum price per square foot.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_sqft_max</td><td>number</td><td>Maximum price per square foot.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_sqft_mean</td><td>number</td><td>Mean price per square foot.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_sqft_sd</td><td>number</td><td>Price per square foot standard deviation.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_sqft_count</td><td>integer</td><td>Number of properties analyzed for price per square foot distribution.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_rental_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"742af7c8-4cf0-45f4-8d8a-63a19e0d6898","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_rental_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"4e44e307-9a95-4d2d-9afb-7db0a8885a82","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_rental_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"36abca6a-35b5-49be-9dd3-d6bfd19bf7c2","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_rental_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"022efd80-dffd-48ee-ad26-b0c907df5702","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_rental_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"09222c44-5512-4a51-aa91-df588290347c"},{"name":"Rental Value Distribution From Address (Batch)","id":"bd3297c6-a2e9-4176-a326-cce0a309e94b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_rental_value_distribution?property_type=SFD","description":"<p>Examine the distribution of monthly rental values and monthly per sq ft rental values within a block, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive rental market overview at the block level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Price standard deviation.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties analyzed for price distribution.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_sqft_5</td><td>number</td><td>Price per square foot at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_sqft_25</td><td>number</td><td>Price per square foot at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_sqft_50</td><td>number</td><td>Median price per square foot.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_sqft_75</td><td>number</td><td>Price per square foot at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_sqft_95</td><td>number</td><td>Price per square foot at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_sqft_min</td><td>number</td><td>Minimum price per square foot.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_sqft_max</td><td>number</td><td>Maximum price per square foot.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_sqft_mean</td><td>number</td><td>Mean price per square foot.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_sqft_sd</td><td>number</td><td>Price per square foot standard deviation.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_sqft_count</td><td>integer</td><td>Number of properties analyzed for price per square foot distribution.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_rental_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"ce31a4c9-584c-4dd4-90f1-e1c8381f478f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"24b8e41d-602a-4520-a694-fb83359e07c6","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"b47df6da-9fb7-4d89-a0a0-2900bd136820","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6c1cafed-07dc-43e7-a7ca-69d2f5c35fe8","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"bd3297c6-a2e9-4176-a326-cce0a309e94b"},{"name":"Superfund Sites","id":"2e25a3ff-2ae9-4260-b8eb-b8ed9c4f8b84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/superfund?block_id=360050001001000","description":"<p>Identify nearby federally-designated toxic contamination cleanup sites, providing crucial information on potential environmental hazards in a block's vicinity. </p>\n<p>Source: ATSDR (CDC) </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Decennially</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>within_miles_0</td><td>object</td><td>Superfund sites that the property is located on (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_0.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_0.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_0.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_0.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_0.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_0.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_0.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_0.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n<tr><td>within_miles_1</td><td>object</td><td>Superfund sites within 1 mile of the property (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_1.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_1.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_1.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_1.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_1.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_1.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_1.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_1.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n<tr><td>within_miles_4</td><td>object</td><td>Superfund sites within 4 miles of the property (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_4.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_4.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_4.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_4.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_4.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_4.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_4.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_4.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","superfund"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"}],"variable":[]}},"response":[{"id":"2ce4d058-f491-4c00-80c0-f1d3ac2f3453","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/superfund?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","superfund"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/superfund\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"within_miles_0\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_1\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_4\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        }\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/superfund\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"within_miles_0\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_1\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_4\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        }\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"bbf8b3d5-c398-4a50-a260-acc697d07e95","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/superfund?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","superfund"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a4623a32-20fc-455f-8a34-e8ce4f4dd5f8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/superfund?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","superfund"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"37c21e39-fa9b-4918-94c5-d1e55b4a431d","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/superfund?block_id=360050001001000","host":["https://api.housecanary.com"],"path":["v2","block","superfund"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2e25a3ff-2ae9-4260-b8eb-b8ed9c4f8b84"},{"name":"Superfund Sites (Batch)","id":"73fceda7-a2e1-4b58-ac69-9cfe6a8e61f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/superfund","description":"<p>Identify nearby federally-designated toxic contamination cleanup sites, providing crucial information on potential environmental hazards in a block's vicinity. </p>\n<p>Source: ATSDR (CDC) </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Decennially</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>within_miles_0</td><td>object</td><td>Superfund sites that the property is located on (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_0.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_0.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_0.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_0.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_0.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_0.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_0.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_0.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n<tr><td>within_miles_1</td><td>object</td><td>Superfund sites within 1 mile of the property (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_1.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_1.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_1.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_1.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_1.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_1.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_1.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_1.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n<tr><td>within_miles_4</td><td>object</td><td>Superfund sites within 4 miles of the property (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_4.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_4.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_4.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_4.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_4.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_4.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_4.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_4.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","superfund"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"6bedb2ce-40d8-4d22-9294-93641aeb7173","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/superfund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/superfund\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"within_miles_0\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_1\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_4\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        }\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/superfund\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"within_miles_0\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_1\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_4\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        }\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"4d9648b0-6004-4562-90b0-54d727e2b5f2","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/superfund"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c686a94d-94ce-4180-b392-c2c965df4b4c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/superfund"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9e6f923b-b780-49ba-b908-ae544b389b33","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/superfund"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"73fceda7-a2e1-4b58-ac69-9cfe6a8e61f7"},{"name":"Superfund Sites From Address","id":"ea1bbc20-4f9a-4ac4-9e47-0c607dd9905f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_superfund?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Identify nearby federally-designated toxic contamination cleanup sites, providing crucial information on potential environmental hazards in a block's vicinity. </p>\n<p>Source: ATSDR (CDC) </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Decennially</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>within_miles_0</td><td>object</td><td>Superfund sites that the property is located on (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_0.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_0.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_0.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_0.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_0.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_0.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_0.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_0.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n<tr><td>within_miles_1</td><td>object</td><td>Superfund sites within 1 mile of the property (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_1.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_1.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_1.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_1.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_1.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_1.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_1.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_1.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n<tr><td>within_miles_4</td><td>object</td><td>Superfund sites within 4 miles of the property (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_4.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_4.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_4.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_4.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_4.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_4.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_4.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_4.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_superfund"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"05541b4d-4404-49c7-ad8d-81551cc9e60c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_superfund?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_superfund"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_superfund\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"within_miles_0\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_1\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_4\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_superfund\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"within_miles_0\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_1\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_4\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"40bdff7a-9c33-402a-bb45-6437ce6efea3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_superfund?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_superfund"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"7ca867ac-b49b-4b0b-b583-c107c0a615b4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_superfund?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_superfund"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a51f387b-5425-456a-850d-44aac60383a7","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_superfund?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","block_superfund"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"ea1bbc20-4f9a-4ac4-9e47-0c607dd9905f"},{"name":"Superfund Sites From Address (Batch)","id":"f4276ca7-63ed-4688-9f4c-e5dfe1c9793b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_superfund","description":"<p>Identify nearby federally-designated toxic contamination cleanup sites, providing crucial information on potential environmental hazards in a block's vicinity. </p>\n<p>Source: ATSDR (CDC) </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Decennially</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>within_miles_0</td><td>object</td><td>Superfund sites that the property is located on (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_0.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_0.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_0.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_0.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_0.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_0.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_0.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_0.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n<tr><td>within_miles_1</td><td>object</td><td>Superfund sites within 1 mile of the property (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_1.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_1.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_1.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_1.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_1.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_1.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_1.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_1.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n<tr><td>within_miles_4</td><td>object</td><td>Superfund sites within 4 miles of the property (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_4.count</td><td>integer</td><td>Number of Superfund sites in the area.</td><td>4</td>\n        </tr>\n<tr><td>within_miles_4.detail</td><td>array</td><td>Specifics for each Superfund site in the area (if any).</td><td></td>\n        </tr>\n<tr><td>within_miles_4.detail[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>within_miles_4.detail[].site_name</td><td>string</td><td>Official name of the Superfund site.</td><td>Hazardous Waste Disposal Site</td>\n        </tr>\n<tr><td>within_miles_4.detail[].epa_site_id</td><td>string</td><td>Official ID of the Superfund site.</td><td>EPA12345</td>\n        </tr>\n<tr><td>within_miles_4.detail[].link</td><td>string</td><td>URL for site details hosted by the EPA.</td><td>https://www.epa.gov/superfund/hazardous-waste-disposal-site</td>\n        </tr>\n<tr><td>within_miles_4.detail[].npl_status</td><td>string</td><td>Status of the site on the National Priorities List.</td><td>Proposed</td>\n        </tr>\n<tr><td>within_miles_4.detail[].updated_date</td><td>string</td><td>Date when the site entry was last modified.</td><td>2023-07-15</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_superfund"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"e4c45a3e-419b-4406-94db-e740d8308840","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_superfund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_superfund\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"within_miles_0\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_1\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_4\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_superfund\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"within_miles_0\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_1\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        },\n        \"within_miles_4\": {\n          \"count\": 4,\n          \"detail\": [\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            },\n            {\n              \"site_name\": \"Hazardous Waste Disposal Site\",\n              \"epa_site_id\": \"EPA12345\",\n              \"link\": \"https://www.epa.gov/superfund/hazardous-waste-disposal-site\",\n              \"npl_status\": \"Proposed\",\n              \"updated_date\": \"2023-07-15\"\n            }\n          ]\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"7c953314-dc89-4c7e-a2a2-66897947a569","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_superfund"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"8a6b609e-447d-46e8-a8a9-dc73a576592c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_superfund"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e8dd1a00-259e-4496-8475-e3a0edfb100d","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_superfund"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f4276ca7-63ed-4688-9f4c-e5dfe1c9793b"},{"name":"Value Distribution","id":"d4e69387-277a-44fb-a5b4-12b35cb76d57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/value_distribution?block_id=360050001001000&property_type=SFD","description":"<p>Examine the distribution of property values and per sq ft values within a block, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive market overview at the block level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Price standard deviation.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties analyzed for price distribution.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_sqft_5</td><td>number</td><td>Price per square foot at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_sqft_25</td><td>number</td><td>Price per square foot at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_sqft_50</td><td>number</td><td>Median price per square foot.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_sqft_75</td><td>number</td><td>Price per square foot at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_sqft_95</td><td>number</td><td>Price per square foot at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_sqft_min</td><td>number</td><td>Minimum price per square foot.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_sqft_max</td><td>number</td><td>Maximum price per square foot.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_sqft_mean</td><td>number</td><td>Mean price per square foot.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_sqft_sd</td><td>number</td><td>Price per square foot standard deviation.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_sqft_count</td><td>integer</td><td>Number of properties analyzed for price per square foot distribution.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"c51fbe54-ba65-44df-8fe6-bd7508c0421c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_distribution?block_id=360050001001000&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","value_distribution"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"fa04a3e3-dc65-425e-ac13-303f28b2e505","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_distribution?block_id=360050001001000&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","value_distribution"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"bbaf5e30-d033-4496-a561-19840d88a6ef","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_distribution?block_id=360050001001000&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","value_distribution"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6cc59fbe-b481-4019-b120-2b474b5b1ad1","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_distribution?block_id=360050001001000&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","value_distribution"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d4e69387-277a-44fb-a5b4-12b35cb76d57"},{"name":"Value Distribution (Batch)","id":"97cb0f23-c329-4b32-a243-8a14146970b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/value_distribution?property_type=SFD","description":"<p>Examine the distribution of property values and per sq ft values within a block, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive market overview at the block level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Price standard deviation.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties analyzed for price distribution.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_sqft_5</td><td>number</td><td>Price per square foot at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_sqft_25</td><td>number</td><td>Price per square foot at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_sqft_50</td><td>number</td><td>Median price per square foot.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_sqft_75</td><td>number</td><td>Price per square foot at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_sqft_95</td><td>number</td><td>Price per square foot at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_sqft_min</td><td>number</td><td>Minimum price per square foot.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_sqft_max</td><td>number</td><td>Maximum price per square foot.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_sqft_mean</td><td>number</td><td>Mean price per square foot.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_sqft_sd</td><td>number</td><td>Price per square foot standard deviation.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_sqft_count</td><td>integer</td><td>Number of properties analyzed for price per square foot distribution.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"6ed53e81-9f8a-4d7e-a3df-7acdd0e9698b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"8962e0d9-ba7d-4039-a04d-261989d1ebd4","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"6bd1a122-cd50-443c-bae0-689914023032","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f4b58019-154e-4190-802f-6874d1b840e7","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","block","value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"97cb0f23-c329-4b32-a243-8a14146970b0"},{"name":"Value Distribution From Address","id":"f63c60f8-2e58-44d5-9b9b-b6b569b3bd2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","description":"<p>Examine the distribution of property values and per sq ft values within a block, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive market overview at the block level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Price standard deviation.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties analyzed for price distribution.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_sqft_5</td><td>number</td><td>Price per square foot at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_sqft_25</td><td>number</td><td>Price per square foot at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_sqft_50</td><td>number</td><td>Median price per square foot.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_sqft_75</td><td>number</td><td>Price per square foot at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_sqft_95</td><td>number</td><td>Price per square foot at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_sqft_min</td><td>number</td><td>Minimum price per square foot.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_sqft_max</td><td>number</td><td>Maximum price per square foot.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_sqft_mean</td><td>number</td><td>Mean price per square foot.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_sqft_sd</td><td>number</td><td>Price per square foot standard deviation.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_sqft_count</td><td>integer</td><td>Number of properties analyzed for price per square foot distribution.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"4cb0d781-9e73-43df-8aa3-2dfc531f8698","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9f86f736-1aa8-4274-b1cb-9378d1efc497","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"42a0e2cb-31d9-4675-963d-c3098f72a705","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0eabbfbe-78ad-46b4-942e-89c0fb4f6a6c","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f63c60f8-2e58-44d5-9b9b-b6b569b3bd2d"},{"name":"Value Distribution From Address (Batch)","id":"c0bea465-e3eb-44ae-aed1-7afc2fef745c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_value_distribution?property_type=SFD","description":"<p>Examine the distribution of property values and per sq ft values within a block, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive market overview at the block level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Price standard deviation.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties analyzed for price distribution.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_sqft_5</td><td>number</td><td>Price per square foot at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_sqft_25</td><td>number</td><td>Price per square foot at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_sqft_50</td><td>number</td><td>Median price per square foot.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_sqft_75</td><td>number</td><td>Price per square foot at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_sqft_95</td><td>number</td><td>Price per square foot at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_sqft_min</td><td>number</td><td>Minimum price per square foot.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_sqft_max</td><td>number</td><td>Maximum price per square foot.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_sqft_mean</td><td>number</td><td>Mean price per square foot.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_sqft_sd</td><td>number</td><td>Price per square foot standard deviation.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_sqft_count</td><td>integer</td><td>Number of properties analyzed for price per square foot distribution.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"1e6d712c-d0e1-43eb-9fe6-3586f22f2089","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_sqft_5\": 150,\n        \"value_sqft_25\": 170,\n        \"value_sqft_50\": 190,\n        \"value_sqft_75\": 210,\n        \"value_sqft_95\": 230,\n        \"value_sqft_min\": 130,\n        \"value_sqft_max\": 250,\n        \"value_sqft_mean\": 180,\n        \"value_sqft_sd\": 20,\n        \"value_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"ad3eeb57-f974-4837-9a54-05d059726e48","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"531ce320-9dd6-47e3-a6a6-c84f0bae9cfb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"97b6b0d6-97ef-40da-9d9e-e400b185e5c1","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","block_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c0bea465-e3eb-44ae-aed1-7afc2fef745c"},{"name":"Value Forecast","id":"f3aa86a0-a68d-43c8-9281-a00f5740d8db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/value_ts_forecast?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>This endpoint provides a forecast time series of monthly block-median data for dollar value and dollar value per sq ft. The values are forecast one year into the future. You can specify a desired property type using the <code>property_type</code> request parameter. The default is SFD. You can also specify the <code>order</code>, <code>limit</code>, <code>start</code>, and <code>end</code> request parameters. The <code>order</code> parameter determines the chronological order to sort result items. The <code>limit</code> parameter sets the maximum integer number of result items to return. The <code>start</code> and <code>end</code> parameters set the beginning and ending date limits for result items, respectively, based on month in ISO 8601 format (e.g., 2015-01-01). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","value_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"},{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"8748602b-4f8b-4925-bbc8-1619fde1cab2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_forecast?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_forecast"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"89288ea9-ba4a-4fa0-b09f-ef38ff1a7538","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_forecast?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_forecast"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"440ca74b-45e4-4b8a-b3a8-f82ddda93376","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_forecast?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_forecast"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b6645915-ef7b-4705-9291-80424a8a5873","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_forecast?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_forecast"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f3aa86a0-a68d-43c8-9281-a00f5740d8db"},{"name":"Value Forecast (Batch)","id":"4c373255-c4f4-456d-a970-ed62da04cfe4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>This endpoint provides a forecast time series of monthly block-median data for dollar value and dollar value per sq ft. The values are forecast one year into the future. You can specify a desired property type using the <code>property_type</code> request parameter. The default is SFD. You can also specify the <code>order</code>, <code>limit</code>, <code>start</code>, and <code>end</code> request parameters. The <code>order</code> parameter determines the chronological order to sort result items. The <code>limit</code> parameter sets the maximum integer number of result items to return. The <code>start</code> and <code>end</code> parameters set the beginning and ending date limits for result items, respectively, based on month in ISO 8601 format (e.g., 2015-01-01). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","value_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"78b583d4-acfa-4835-86ed-f13d8849f4b4","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"83f0cee3-cd54-4619-a3b8-3490f295e09b","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e17b0cbd-d573-4f33-934d-539e94f39dbc","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"3fd887d8-5811-4d23-9fc8-cc5f2dfed8ad","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"4c373255-c4f4-456d-a970-ed62da04cfe4"},{"name":"Value Forecast From Address","id":"1342181a-f95c-41cb-8c5a-f05d5e481093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>This endpoint provides a forecast time series of monthly block-median data for dollar value and dollar value per sq ft. The values are forecast one year into the future. You can specify a desired property type using the <code>property_type</code> request parameter. The default is SFD. You can also specify the <code>order</code>, <code>limit</code>, <code>start</code>, and <code>end</code> request parameters. The <code>order</code> parameter determines the chronological order to sort result items. The <code>limit</code> parameter sets the maximum integer number of result items to return. The <code>start</code> and <code>end</code> parameters set the beginning and ending date limits for result items, respectively, based on month in ISO 8601 format (e.g., 2015-01-01). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_value_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"ad4c1e96-63f3-4da9-a1ce-0d43587a2e6a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"f6f5c381-8573-49d7-b9b4-6f66ed15e4ae","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"8e2ae382-0611-4cec-bb40-f8e0ee812221","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"d9c3686e-05ba-44e6-a31a-2f8c772d48ff","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1342181a-f95c-41cb-8c5a-f05d5e481093"},{"name":"Value Forecast From Address (Batch)","id":"4d50a95d-cb12-425a-9fa9-dc452578f1c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>This endpoint provides a forecast time series of monthly block-median data for dollar value and dollar value per sq ft. The values are forecast one year into the future. You can specify a desired property type using the <code>property_type</code> request parameter. The default is SFD. You can also specify the <code>order</code>, <code>limit</code>, <code>start</code>, and <code>end</code> request parameters. The <code>order</code> parameter determines the chronological order to sort result items. The <code>limit</code> parameter sets the maximum integer number of result items to return. The <code>start</code> and <code>end</code> parameters set the beginning and ending date limits for result items, respectively, based on month in ISO 8601 format (e.g., 2015-01-01). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_value_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"00d28a0e-8b77-4bf7-b50d-24d6d4a70027","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"6af9d974-b342-4c7b-9dcd-3250ebf3f594","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"581af2f1-38ea-4998-9be2-33f134cadce1","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"eb328fec-d0b3-4d5c-982f-aa8a9b356420","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"4d50a95d-cb12-425a-9fa9-dc452578f1c5"},{"name":"Value Historical","id":"1a1ba43a-d8f5-4bc7-8e36-db7c77412533","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/value_ts_historical?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>This endpoint provides a historical time series of monthly block-median data for dollar value and dollar value per sq ft. You can specify a desired property type using the <code>property_type</code> request parameter. The default is SFD. You can also specify the <code>order</code>, <code>limit</code>, <code>start</code>, and <code>end</code> request parameters. The <code>order</code> parameter determines the chronological order to sort result items. The <code>limit</code> parameter sets the maximum integer number of result items to return. The <code>start</code> and <code>end</code> parameters set the beginning and ending date limits for result items, respectively, based on month in ISO 8601 format (e.g., 2015-01-01). Values may go back as far as 1985 </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","value_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>15-digit US-census block ID</p>\n","type":"text/plain"},"key":"block_id","value":"360050001001000"},{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"b2df42d2-cba7-412f-9687-df7ba534c76a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_historical?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_historical"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"2a75e4cd-71c6-4f3d-86f4-49b21573f03f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_historical?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_historical"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"50f4f706-c527-4968-8712-cb23b3edfe89","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_historical?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_historical"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"77589f94-2085-4199-9761-e5c2f8ce2006","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_historical?block_id=360050001001000&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_historical"],"query":[{"description":"15-digit US-census block ID","key":"block_id","value":"360050001001000"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1a1ba43a-d8f5-4bc7-8e36-db7c77412533"},{"name":"Value Historical (Batch)","id":"159a8b6f-ac6f-4d43-bbe9-f34732e443d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/block/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>This endpoint provides a historical time series of monthly block-median data for dollar value and dollar value per sq ft. You can specify a desired property type using the <code>property_type</code> request parameter. The default is SFD. You can also specify the <code>order</code>, <code>limit</code>, <code>start</code>, and <code>end</code> request parameters. The <code>order</code> parameter determines the chronological order to sort result items. The <code>limit</code> parameter sets the maximum integer number of result items to return. The <code>start</code> and <code>end</code> parameters set the beginning and ending date limits for result items, respectively, based on month in ISO 8601 format (e.g., 2015-01-01). Values may go back as far as 1985 </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].block_id</td><td>string</td><td>15-digit US-census block ID</td><td>360050001001000</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","value_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"93e5f226-9f12-4aa3-8e66-87704941f729","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"block/value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  },\n  {\n    \"block/value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"block_info\": {\n      \"block_id\": \"360050001001000\"\n    }\n  }\n]"},{"id":"7e0311d3-bdaf-4218-961a-0df166108b6b","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"6ffaaa3b-103f-40a6-a243-fcb908826e7b","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1f393685-3385-403d-ab74-f64b85ec7346","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"block_id\": \"360050001001000\"\n  },\n  {\n    \"block_id\": \"360050001001000\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/block/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","block","value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"159a8b6f-ac6f-4d43-bbe9-f34732e443d5"},{"name":"Value Historical From Address","id":"852ef147-0068-4a5f-93ac-2fc403461bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/block_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>This endpoint provides a historical time series of monthly block-median data for dollar value and dollar value per sq ft. You can specify a desired property type using the <code>property_type</code> request parameter. The default is SFD. You can also specify the <code>order</code>, <code>limit</code>, <code>start</code>, and <code>end</code> request parameters. The <code>order</code> parameter determines the chronological order to sort result items. The <code>limit</code> parameter sets the maximum integer number of result items to return. The <code>start</code> and <code>end</code> parameters set the beginning and ending date limits for result items, respectively, based on month in ISO 8601 format (e.g., 2015-01-01). Values may go back as far as 1985 </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_value_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"2b1f0086-31d0-45d5-8b59-2b509d988bcb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"055b638c-e009-4d25-a342-e5fee149f0b0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0763e94b-7581-41a7-9390-4ee1d26926be","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9b261098-a69f-44d0-9ed3-a9640a6890cc","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"852ef147-0068-4a5f-93ac-2fc403461bad"},{"name":"Value Historical From Address (Batch)","id":"952a87fe-97fa-497a-a4e7-fec98869d747","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/block_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>This endpoint provides a historical time series of monthly block-median data for dollar value and dollar value per sq ft. You can specify a desired property type using the <code>property_type</code> request parameter. The default is SFD. You can also specify the <code>order</code>, <code>limit</code>, <code>start</code>, and <code>end</code> request parameters. The <code>order</code> parameter determines the chronological order to sort result items. The <code>limit</code> parameter sets the maximum integer number of result items to return. The <code>start</code> and <code>end</code> parameters set the beginning and ending date limits for result items, respectively, based on month in ISO 8601 format (e.g., 2015-01-01). Values may go back as far as 1985 </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","block_value_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"dff11508-c94e-4015-bfe6-3e26564f46ca","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/block_value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/block_value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"65759164-464c-4214-b3f5-7a9d1e5da9d5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0d458e60-b26d-4bbc-af86-8c7dfe4a0f2f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a5f0b786-b2a3-44e2-be22-b7ba6cd55db9","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/block_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","block_value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"952a87fe-97fa-497a-a4e7-fec98869d747"}],"id":"61babd89-6e16-4238-918d-319049d8f978","_postman_id":"61babd89-6e16-4238-918d-319049d8f978","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Census Block Group Level","item":[{"name":"Gross Rental Yield","id":"6bbdb26c-71af-4f5f-82fd-a0b12f54fd84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/blockgroup/hcri?blockgroup_id=060750615003&property_type=SFD","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a block group, enabling assessment of rental market performance within a specific block group.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        <td></td></tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        <td></td></tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>12-digit census block group ID</p>\n","type":"text/plain"},"key":"blockgroup_id","value":"060750615003"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"d173c582-eea9-4404-b7dc-360b324511f2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/hcri?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","hcri"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"9f05c282-32bd-40fd-b399-97e21ef749df","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/hcri?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","hcri"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"5715c4f4-c86c-456a-b214-d8be28dacc44","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/hcri?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","hcri"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e6e22e66-2225-4133-ab22-12a2a9bac2c3","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/hcri?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","hcri"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"6bbdb26c-71af-4f5f-82fd-a0b12f54fd84"},{"name":"Gross Rental Yield (Batch)","id":"e7716771-9721-4ced-89b3-190b69f11cb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/blockgroup/hcri?property_type=SFD","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a block group, enabling assessment of rental market performance within a specific block group.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        <td></td></tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        <td></td></tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"8406d6fc-685d-49a9-adc3-2201e6c5f975","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/hcri?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"e61f564a-c662-450c-b042-f6925c9f6013","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/hcri?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f15a9a34-02d9-418f-902a-3600a63a9a79","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/hcri?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"259cdf68-6af8-4dcb-8b5d-8c7dc0c40702","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/hcri?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e7716771-9721-4ced-89b3-190b69f11cb5"},{"name":"Gross Rental Yield From Address","id":"c1f23ac1-4ecd-4b2a-989e-561260a958b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/blockgroup_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a block group, enabling assessment of rental market performance within a specific block group.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        <td></td></tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        <td></td></tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"ebef25d4-ff1f-48ae-9bf9-c55d2b91ffb1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"c011275b-c8e9-432c-8c25-eb3fcd1213af","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e5250444-05e4-4c9f-b118-04f84c5fe0b7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"102cf1e0-a714-45e8-bbe7-03666ab6b0b2","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c1f23ac1-4ecd-4b2a-989e-561260a958b1"},{"name":"Gross Rental Yield From Address (Batch)","id":"307a298e-e75e-4576-a65c-1e1c21571471","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/blockgroup_hcri?property_type=SFD","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a block group, enabling assessment of rental market performance within a specific block group.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD.</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD.</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        <td></td></tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        <td></td></tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD.</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"a684f5da-f02e-4276-ab74-f8772e5fd4a7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_hcri?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"a3f8d9ce-02f7-41db-bb19-f55770f721e5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_hcri?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"7d32009d-3605-48a0-bc2d-e70b02edb588","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_hcri?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f086e89d-deb1-4d6c-a38c-3e77dcf693d9","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_hcri?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_hcri"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD.","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"307a298e-e75e-4576-a65c-1e1c21571471"},{"name":"Rental Value Distribution","id":"811ecec6-7889-4635-b7bf-e9892536643b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?blockgroup_id=060750615003&property_type=SFD","description":"<p>Examine the distribution of monthly rental values and monthly per sq ft rental values within a block group, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive rental market overview at the block group level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Standard deviation of prices.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_5</td><td>number</td><td>Price per sq ft at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_25</td><td>number</td><td>Price per sq ft at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_50</td><td>number</td><td>Median price per sq ft.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_75</td><td>number</td><td>Price per sq ft at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_95</td><td>number</td><td>Price per sq ft at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_min</td><td>number</td><td>Minimum price per sq ft.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_max</td><td>number</td><td>Maximum price per sq ft.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_mean</td><td>number</td><td>Mean price per sq ft.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_sd</td><td>number</td><td>Standard deviation of price per sq ft.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_count</td><td>integer</td><td>Number of properties.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","rental_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>12-digit census block group ID</p>\n","type":"text/plain"},"key":"blockgroup_id","value":"060750615003"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"7f66a485-ce43-46c0-a606-43a87e072067","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","rental_value_distribution"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"6daf5eca-63fc-4373-a231-2894b25f5b5d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","rental_value_distribution"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"22366f19-36be-4602-9ad5-736d54c50e1f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","rental_value_distribution"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"7278fb9e-dfef-4073-a73e-87da0d1fb474","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","rental_value_distribution"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"811ecec6-7889-4635-b7bf-e9892536643b"},{"name":"Rental Value Distribution (Batch)","id":"febced8d-9561-4588-a616-191f37469075","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?property_type=SFD","description":"<p>Examine the distribution of monthly rental values and monthly per sq ft rental values within a block group, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive rental market overview at the block group level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Standard deviation of prices.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_5</td><td>number</td><td>Price per sq ft at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_25</td><td>number</td><td>Price per sq ft at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_50</td><td>number</td><td>Median price per sq ft.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_75</td><td>number</td><td>Price per sq ft at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_95</td><td>number</td><td>Price per sq ft at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_min</td><td>number</td><td>Minimum price per sq ft.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_max</td><td>number</td><td>Maximum price per sq ft.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_mean</td><td>number</td><td>Mean price per sq ft.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_sd</td><td>number</td><td>Standard deviation of price per sq ft.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_count</td><td>integer</td><td>Number of properties.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","rental_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"853a773a-7770-49eb-be88-d2f1813c75a2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"1ba7b360-9de9-4d66-ac21-5c3d1de8adec","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d16f1275-2e17-4909-a6d0-58a00974a624","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"acad8abc-f51e-4743-b5ba-7f95b933b14b","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"febced8d-9561-4588-a616-191f37469075"},{"name":"Rental Value Distribution From Address","id":"35a99e80-3f00-44c4-81e7-5c6ca2907f21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","description":"<p>Examine the distribution of monthly rental values and monthly per sq ft rental values within a block group, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive rental market overview at the block group level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Standard deviation of prices.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_5</td><td>number</td><td>Price per sq ft at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_25</td><td>number</td><td>Price per sq ft at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_50</td><td>number</td><td>Median price per sq ft.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_75</td><td>number</td><td>Price per sq ft at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_95</td><td>number</td><td>Price per sq ft at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_min</td><td>number</td><td>Minimum price per sq ft.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_max</td><td>number</td><td>Maximum price per sq ft.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_mean</td><td>number</td><td>Mean price per sq ft.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_sd</td><td>number</td><td>Standard deviation of price per sq ft.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_count</td><td>integer</td><td>Number of properties.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_rental_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"84a26c12-e120-453f-9d5d-4bba8d2ec89a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_rental_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"c50bf589-fc36-4f1c-8c03-60cdff448ed8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_rental_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d9e38bf6-3096-46cd-b879-c18bc599f49b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_rental_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1fbd9e1e-ae19-4859-9535-2559c7202c3a","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_rental_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"35a99e80-3f00-44c4-81e7-5c6ca2907f21"},{"name":"Rental Value Distribution From Address (Batch)","id":"2d5e6556-3757-4fdb-9dfb-059aa2481f6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?property_type=SFD","description":"<p>Examine the distribution of monthly rental values and monthly per sq ft rental values within a block group, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive rental market overview at the block group level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Standard deviation of prices.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_5</td><td>number</td><td>Price per sq ft at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_25</td><td>number</td><td>Price per sq ft at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_50</td><td>number</td><td>Median price per sq ft.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_75</td><td>number</td><td>Price per sq ft at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_95</td><td>number</td><td>Price per sq ft at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_min</td><td>number</td><td>Minimum price per sq ft.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_max</td><td>number</td><td>Maximum price per sq ft.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_mean</td><td>number</td><td>Mean price per sq ft.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_sd</td><td>number</td><td>Standard deviation of price per sq ft.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_count</td><td>integer</td><td>Number of properties.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_rental_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"38b9c34f-9f41-4567-8d29-b957e447924e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_rental_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"010b785d-47ab-4249-a063-354d24468ab9","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2e3fc254-5ca8-46a7-98d9-df36fdeac9a9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e8ae59cc-53f0-4dee-8e26-0c5ab1ae4373","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_rental_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_rental_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2d5e6556-3757-4fdb-9dfb-059aa2481f6b"},{"name":"Value Distribution","id":"9d9d62fa-2d61-441a-a60f-edf5ab11652c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/blockgroup/value_distribution?blockgroup_id=060750615003&property_type=SFD","description":"<p>Examine the distribution of property values and per sq ft values within a block group, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive market overview at the block group level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Standard deviation of prices.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_5</td><td>number</td><td>Price per sq ft at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_25</td><td>number</td><td>Price per sq ft at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_50</td><td>number</td><td>Median price per sq ft.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_75</td><td>number</td><td>Price per sq ft at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_95</td><td>number</td><td>Price per sq ft at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_min</td><td>number</td><td>Minimum price per sq ft.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_max</td><td>number</td><td>Maximum price per sq ft.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_mean</td><td>number</td><td>Mean price per sq ft.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_sd</td><td>number</td><td>Standard deviation of price per sq ft.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_count</td><td>integer</td><td>Number of properties.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>12-digit census block group ID</p>\n","type":"text/plain"},"key":"blockgroup_id","value":"060750615003"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"40eff4fc-c708-4dd5-bb23-e78e5649f843","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_distribution?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_distribution"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"2d022017-d111-467d-81fb-5d4b0a64d76b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_distribution?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_distribution"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1cd66f9c-7e81-4028-8cd3-b5ae174e0cad","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_distribution?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_distribution"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"67750b64-9fe9-4532-bce2-d46b9a4a2c30","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_distribution?blockgroup_id=060750615003&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_distribution"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9d9d62fa-2d61-441a-a60f-edf5ab11652c"},{"name":"Value Distribution (Batch)","id":"7858b1df-0965-4022-8f38-4276d4c2f057","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/blockgroup/value_distribution?property_type=SFD","description":"<p>Examine the distribution of property values and per sq ft values within a block group, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive market overview at the block group level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Standard deviation of prices.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_5</td><td>number</td><td>Price per sq ft at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_25</td><td>number</td><td>Price per sq ft at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_50</td><td>number</td><td>Median price per sq ft.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_75</td><td>number</td><td>Price per sq ft at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_95</td><td>number</td><td>Price per sq ft at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_min</td><td>number</td><td>Minimum price per sq ft.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_max</td><td>number</td><td>Maximum price per sq ft.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_mean</td><td>number</td><td>Mean price per sq ft.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_sd</td><td>number</td><td>Standard deviation of price per sq ft.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_count</td><td>integer</td><td>Number of properties.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"51ac9dca-cc08-4be6-959d-b08cf8310fbe","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"713a72c7-453c-42b5-bf72-145ac6a2d71b","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"38d72f8e-8db3-4b63-9b33-5143187e2054","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"d81a1c87-acc2-455c-86b2-f7deb81a2add","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7858b1df-0965-4022-8f38-4276d4c2f057"},{"name":"Value Distribution From Address","id":"c761b01b-07f1-4dca-ab82-e3ff99f14003","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","description":"<p>Examine the distribution of property values and per sq ft values within a block group, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive market overview at the block group level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Standard deviation of prices.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_5</td><td>number</td><td>Price per sq ft at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_25</td><td>number</td><td>Price per sq ft at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_50</td><td>number</td><td>Median price per sq ft.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_75</td><td>number</td><td>Price per sq ft at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_95</td><td>number</td><td>Price per sq ft at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_min</td><td>number</td><td>Minimum price per sq ft.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_max</td><td>number</td><td>Maximum price per sq ft.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_mean</td><td>number</td><td>Mean price per sq ft.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_sd</td><td>number</td><td>Standard deviation of price per sq ft.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_count</td><td>integer</td><td>Number of properties.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"9f85b8c5-5897-445d-b509-2a8d03fd9e62","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"18a2314e-0321-4dea-a6c5-35f650ac5aec","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"feba5fcd-18bf-4c28-b551-cd33f2749b93","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0f86aea3-bd26-4738-99c2-64a17aa5d507","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_distribution"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c761b01b-07f1-4dca-ab82-e3ff99f14003"},{"name":"Value Distribution From Address (Batch)","id":"72f5055b-258c-4d28-81d2-c108e7e8b3b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?property_type=SFD","description":"<p>Examine the distribution of property values and per sq ft values within a block group, with key summary statistics including max, min, mean, standard deviation, count, and various percentiles for a comprehensive market overview at the block group level. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>value_5</td><td>number</td><td>Price at the 5th percentile.</td><td>230000</td>\n        <td></td></tr>\n<tr><td>value_25</td><td>number</td><td>Price at the 25th percentile.</td><td>260000</td>\n        <td></td></tr>\n<tr><td>value_50</td><td>number</td><td>Median price.</td><td>290000</td>\n        <td></td></tr>\n<tr><td>value_75</td><td>number</td><td>Price at the 75th percentile.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>value_95</td><td>number</td><td>Price at the 95th percentile.</td><td>360000</td>\n        <td></td></tr>\n<tr><td>value_min</td><td>integer</td><td>Minimum price.</td><td>200000</td>\n        <td></td></tr>\n<tr><td>value_max</td><td>integer</td><td>Maximum price.</td><td>400000</td>\n        <td></td></tr>\n<tr><td>value_mean</td><td>number</td><td>Mean price.</td><td>300000</td>\n        <td></td></tr>\n<tr><td>value_sd</td><td>number</td><td>Standard deviation of prices.</td><td>25000</td>\n        <td></td></tr>\n<tr><td>value_count</td><td>integer</td><td>Number of properties.</td><td>1000</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_5</td><td>number</td><td>Price per sq ft at the 5th percentile.</td><td>150</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_25</td><td>number</td><td>Price per sq ft at the 25th percentile.</td><td>170</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_50</td><td>number</td><td>Median price per sq ft.</td><td>190</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_75</td><td>number</td><td>Price per sq ft at the 75th percentile.</td><td>210</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_95</td><td>number</td><td>Price per sq ft at the 95th percentile.</td><td>230</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_min</td><td>number</td><td>Minimum price per sq ft.</td><td>130</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_max</td><td>number</td><td>Maximum price per sq ft.</td><td>250</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_mean</td><td>number</td><td>Mean price per sq ft.</td><td>180</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_sd</td><td>number</td><td>Standard deviation of price per sq ft.</td><td>20</td>\n        <td></td></tr>\n<tr><td>value_per_sqft_count</td><td>integer</td><td>Number of properties.</td><td>950</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_value_distribution"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"}],"variable":[]}},"response":[{"id":"09e711c6-ac66-4b4e-8a35-e2d082fc982e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_value_distribution\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"value_5\": 230000,\n        \"value_25\": 260000,\n        \"value_50\": 290000,\n        \"value_75\": 320000,\n        \"value_95\": 360000,\n        \"value_min\": 200000,\n        \"value_max\": 400000,\n        \"value_mean\": 300000,\n        \"value_sd\": 25000,\n        \"value_count\": 1000,\n        \"value_per_sqft_5\": 150,\n        \"value_per_sqft_25\": 170,\n        \"value_per_sqft_50\": 190,\n        \"value_per_sqft_75\": 210,\n        \"value_per_sqft_95\": 230,\n        \"value_per_sqft_min\": 130,\n        \"value_per_sqft_max\": 250,\n        \"value_per_sqft_mean\": 180,\n        \"value_per_sqft_sd\": 20,\n        \"value_per_sqft_count\": 950\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"2a9cae58-d289-4309-a2bd-2f792173e521","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"47f37dec-4103-4132-83d8-01cbbfe51fcf","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"770ddaac-7332-44f6-a7f1-981093428b38","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_distribution?property_type=SFD","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_distribution"],"query":[{"description":"Desired property type to aggregate. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].","key":"property_type","value":"SFD"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"72f5055b-258c-4d28-81d2-c108e7e8b3b7"},{"name":"Value Forecast","id":"5eced6f0-e1ba-44f6-9814-30e6eb385d27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year future forecasts for monthly blockgroup-median property values and dollar values per sq ft, enabling data-driven predictions for market trends and potential investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","value_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>12-digit census block group ID</p>\n","type":"text/plain"},"key":"blockgroup_id","value":"060750615003"},{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"28c6c58f-c245-4aa9-92d5-590d5559289d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_forecast"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"9041ca12-c073-49fe-813c-51d183098021","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_forecast"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a4b3b2cb-9f06-480c-bb4b-33d621f0fdfd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_forecast"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ddce962d-3159-4469-b371-13b640d08f01","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_forecast"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5eced6f0-e1ba-44f6-9814-30e6eb385d27"},{"name":"Value Forecast (Batch)","id":"6316000e-5803-4d68-a15f-d4fb39d6590c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year future forecasts for monthly blockgroup-median property values and dollar values per sq ft, enabling data-driven predictions for market trends and potential investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","value_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"f570b53e-e000-4357-aeb2-1913a691a12a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"57c9d0e1-90fa-4014-ab96-5129c356ef21","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a14abc65-edf6-42b2-9b1b-498777659439","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9d337983-751d-4ddc-a0ce-faa2ad1621cb","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"6316000e-5803-4d68-a15f-d4fb39d6590c"},{"name":"Value Forecast From Address","id":"b9ad27e2-bfff-4e3c-830e-42ec3fee29b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year future forecasts for monthly blockgroup-median property values and dollar values per sq ft, enabling data-driven predictions for market trends and potential investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_value_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"9bcd119e-3456-4bee-91b7-a6cb0de82cd7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"57175901-bb51-4bba-aac6-ede8e3c078f1","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"5687373c-1caf-4194-8d43-93fd8423fd00","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b07ea3ba-9eaf-417a-b93d-cec0e1e2b2a1","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b9ad27e2-bfff-4e3c-830e-42ec3fee29b2"},{"name":"Value Forecast From Address (Batch)","id":"843aebef-3756-4f55-ac57-4370255aa0d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year future forecasts for monthly blockgroup-median property values and dollar values per sq ft, enabling data-driven predictions for market trends and potential investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_value_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"883933d6-dd76-4c09-871d-017e8bebcec3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_value_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"673a3d5d-48e8-40fb-8a5a-c8c9006bbe32","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"8f5e7cce-3392-4119-b54b-c769ce59440d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0a18cf3d-585b-41aa-86d9-1ffc400d4597","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_forecast?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_forecast"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"843aebef-3756-4f55-ac57-4370255aa0d7"},{"name":"Value Historical","id":"c97d1d4e-b13d-4e03-96a8-4e1e34145376","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Retrieve historical time series data for monthly blockgroup-median property values and dollar values per sq ft, offering valuable insights into past market trends and performance. Historical data available back to 1985 or after depending on local market data availability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","value_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>12-digit census block group ID</p>\n","type":"text/plain"},"key":"blockgroup_id","value":"060750615003"},{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"c24c2a15-d180-4f0d-8f14-9d733fc3f123","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_historical"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"ca06c151-c59a-412a-b37d-ae691a53dd82","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_historical"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f054fd9c-6418-4510-b5df-5efc47061f6c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_historical"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9868f6bf-e2e8-4989-a560-2b3bb06806d2","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?blockgroup_id=060750615003&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_historical"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c97d1d4e-b13d-4e03-96a8-4e1e34145376"},{"name":"Value Historical (Batch)","id":"c5501bcb-5f26-4759-9377-7f0e5cd2438f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Retrieve historical time series data for monthly blockgroup-median property values and dollar values per sq ft, offering valuable insights into past market trends and performance. Historical data available back to 1985 or after depending on local market data availability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","value_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"da1e388d-bcf2-40e0-a835-c9fa5b3e1f53","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"7d74772b-fd43-4208-adaa-3414613c5fcb","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"14deeeee-0fee-444a-9223-c7b4cbe46069","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e81c8c15-c756-4db1-984f-460a7236b3ba","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","blockgroup","value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c5501bcb-5f26-4759-9377-7f0e5cd2438f"},{"name":"Value Historical From Address","id":"aa2c8538-c0c6-4544-96b5-23f415ec03cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Retrieve historical time series data for monthly blockgroup-median property values and dollar values per sq ft, offering valuable insights into past market trends and performance. Historical data available back to 1985 or after depending on local market data availability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_value_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"beab95e2-0037-4bf6-9bba-62d87552c693","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9df24c7e-6dbc-4f21-a449-f32390f92d08","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1ea6fa18-936c-4245-ae92-a5518bbb781d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"35f9e7de-b7c4-4a5b-b2da-7a4b2b9686fe","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"aa2c8538-c0c6-4544-96b5-23f415ec03cc"},{"name":"Value Historical From Address (Batch)","id":"b857a3b5-dff0-4dab-94c4-d94ac9b1407d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Retrieve historical time series data for monthly blockgroup-median property values and dollar values per sq ft, offering valuable insights into past market trends and performance. Historical data available back to 1985 or after depending on local market data availability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</td><td></td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td></td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>property_type</td><td>string</td><td>Type of property specified in the request. Defaults to SFD. One of [\"SFD\", \"TH\", \"CND\", \"INC\", \"MFH\"].</td><td>TH</td>\n        <td>[SFD, TH, CND, INC, MFH]</td></tr>\n<tr><td>time_series</td><td>array</td><td>List of months and values.</td><td></td>\n        <td></td></tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the value in ISO format.</td><td>2023-08-01</td>\n        <td></td></tr>\n<tr><td>time_series[].value_median</td><td>integer</td><td>Amount in dollars of the forecasted median property sale value for the month.</td><td>320000</td>\n        <td></td></tr>\n<tr><td>time_series[].value_sqft_median</td><td>number</td><td>Amount in dollars of the forecasted median property sale value per square foot for the month.</td><td>210.5</td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","blockgroup_value_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].</p>\n","type":"text/plain"},"key":"property_type","value":"SFD"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"270ed273-20f1-4ab2-9489-c812b5ad23a9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/blockgroup_value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/blockgroup_value_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"property_type\": \"TH\",\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"value_median\": 320000,\n            \"value_sqft_median\": 210.5\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b54a2d7b-a259-403e-9ab0-372ddf46b768","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1fbf43b6-6c2e-41a9-a0b0-36bb87220f1f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c731d77a-4ca9-4b0f-ab14-37f675f7c2f6","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/blockgroup_value_ts_historical?property_type=SFD&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","blockgroup_value_ts_historical"],"query":[{"description":"Desired property type to include in the time series. Defaults to SFD. One of [SFD, TH, CND, INC, MFH].","key":"property_type","value":"SFD"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b857a3b5-dff0-4dab-94c4-d94ac9b1407d"},{"name":"Batch Multiple Endpoints","id":"d0dfa08e-d5de-42bf-be08-d7468bbb5702","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/blockgroup/component_mget?blockgroup_id=060750615003&components=blockgroup/hcri,blockgroup/value_ts_historical","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of blockgroup endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        </tr>\n<tr><td>components</td><td>string</td><td>Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.</td><td>blockgroup/hcri,blockgroup/value_ts_historical</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>12-digit census block group ID</p>\n","type":"text/plain"},"key":"blockgroup_id","value":"060750615003"},{"description":{"content":"<p>Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.</p>\n","type":"text/plain"},"key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}],"variable":[]}},"response":[{"id":"3620bf32-89ea-4ead-b4f7-8a5a4999b111","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/component_mget?blockgroup_id=060750615003&components=blockgroup/hcri,blockgroup/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","blockgroup","component_mget"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"70beafc6-e2dd-437a-ab3b-204d0adec777","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/component_mget?blockgroup_id=060750615003&components=blockgroup/hcri,blockgroup/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","blockgroup","component_mget"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"203dc6be-9f13-43e6-b7b0-5f1d5d43aaab","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/component_mget?blockgroup_id=060750615003&components=blockgroup/hcri,blockgroup/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","blockgroup","component_mget"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1810be43-9fdf-4a32-8a30-75fc105c68de","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/blockgroup/component_mget?blockgroup_id=060750615003&components=blockgroup/hcri,blockgroup/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","blockgroup","component_mget"],"query":[{"description":"12-digit census block group ID","key":"blockgroup_id","value":"060750615003"},{"description":"Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d0dfa08e-d5de-42bf-be08-d7468bbb5702"},{"name":"Batch Multiple Endpoints (Batch)","id":"83ef0f59-178e-4e40-8c4e-39434c28a3b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/blockgroup/component_mget?components=blockgroup/hcri,blockgroup/value_ts_historical","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of blockgroup endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>components</td><td>string</td><td>Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.</td><td>blockgroup/hcri,blockgroup/value_ts_historical</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].blockgroup_id</td><td>string</td><td>12-digit census block group ID</td><td>060750615003</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.</p>\n","type":"text/plain"},"key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}],"variable":[]}},"response":[{"id":"e384157a-7ff0-4dbf-8595-cfd3db8c0d29","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/component_mget?components=blockgroup/hcri,blockgroup/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","blockgroup","component_mget"],"query":[{"description":"Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockgroup/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  },\n  {\n    \"blockgroup/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"blockgroup_info\": {\n      \"block_id\": \"060750615003\"\n    }\n  }\n]"},{"id":"353b58d6-e906-4c22-a038-87ba87b42cb4","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/component_mget?components=blockgroup/hcri,blockgroup/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","blockgroup","component_mget"],"query":[{"description":"Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a25bb8ca-fcf1-4918-94e5-116dec50b4d0","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/component_mget?components=blockgroup/hcri,blockgroup/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","blockgroup","component_mget"],"query":[{"description":"Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"132c49d0-f20f-4c90-8336-efcd8ebc5854","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"blockgroup_id\": \"060750615003\"\n  },\n  {\n    \"blockgroup_id\": \"060750615003\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/blockgroup/component_mget?components=blockgroup/hcri,blockgroup/value_ts_historical","host":["https://api.housecanary.com"],"path":["v2","blockgroup","component_mget"],"query":[{"description":"Comma separated list of blockgroup endpoint names, like \"blockgroup/hcri,blockgroup/value_ts_historical\". Spaces are not allowed between listed endpoints.","key":"components","value":"blockgroup/hcri,blockgroup/value_ts_historical"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"83ef0f59-178e-4e40-8c4e-39434c28a3b2"}],"id":"07705ed6-f7d9-46fe-8d12-dd541dc9e56e","_postman_id":"07705ed6-f7d9-46fe-8d12-dd541dc9e56e","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Zipcode Level","item":[{"name":"Affordability Forecast","id":"5497458e-3c27-45a5-a5b2-4f9a06bd2d3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for ZIP codes with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.28</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.02</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"d0232ab2-bb8f-4d3e-adf5-6b286c256c44","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"27dedeb2-5770-418f-8eb9-f66fbd76504c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0f6ac9d6-aa91-4ed9-af21-be9679191174","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e0913f2a-0d26-4837-a02d-54af876df763","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5497458e-3c27-45a5-a5b2-4f9a06bd2d3c"},{"name":"Affordability Forecast (Batch)","id":"a42ef641-2e89-445a-a9c4-c6a1bcb38561","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for ZIP codes with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.28</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.02</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"9813a9b4-e2e2-4947-8c81-22ee12472c2b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"2d887cdc-e5d0-40be-acbf-601a31fc1b1c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"963a09f5-0985-490c-ba17-ff862a8b226f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0c70b4e9-1514-4b95-87fb-3fccee31268d","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a42ef641-2e89-445a-a9c4-c6a1bcb38561"},{"name":"Affordability Forecast From Address","id":"06f3fdf6-5e5c-4906-9ba8-30fa090186ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for ZIP codes with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.28</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.02</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"481e9180-a0b5-413f-aae9-0805bc7a223a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9a68d1c0-446d-458f-ae67-9fa0b1bc7d04","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2d34bc64-8a4d-46b6-b110-6339d0504b07","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b175ed70-d2c8-45d5-8e95-b62dd24f1015","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"06f3fdf6-5e5c-4906-9ba8-30fa090186ff"},{"name":"Affordability Forecast From Address (Batch)","id":"096adc7e-2edf-452e-9df1-6a20475f77aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for ZIP codes with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.28</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.02</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"42f6d1e9-9811-4ae7-81ec-8d367dc2c5b8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"622aeb5e-db03-4ec2-8d40-701337ff2cfc","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"bd1c73af-b979-4908-b129-5c4b32db8dd9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2fdf8b34-899b-4eb3-8ee5-2203af370935","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"096adc7e-2edf-452e-9df1-6a20475f77aa"},{"name":"Affordability Historical","id":"dfa054c7-6f53-4eec-827b-cf37838a3fd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/affordability_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for ZIP codes with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.28</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.02</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"60ee27e4-0055-45d6-8a57-ced353a88f26","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"dfae827a-5c40-4e2e-838e-8e3d78d43413","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"427832f1-849d-4432-a95a-42e7eb4200af","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"95e99366-1d7f-4c3b-82fb-a44d431b0c68","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"dfa054c7-6f53-4eec-827b-cf37838a3fd3"},{"name":"Affordability Historical (Batch)","id":"3889c795-9ac2-4736-b1a1-98388528e04c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for ZIP codes with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.28</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.02</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"26489e29-dee6-402e-80e3-bc6ae0a540f2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"63f6bf02-a46a-4787-86e0-94fdd28ef44e","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ba765be6-e2aa-43a9-8c7d-118cd13f9441","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"db0e3c6c-7155-4bc8-959c-5019e4cd5389","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"3889c795-9ac2-4736-b1a1-98388528e04c"},{"name":"Affordability Historical From Address","id":"904fae1b-7e10-418a-9fb4-073a5a5d844a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for ZIP codes with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.28</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.02</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"fd172ff0-20c3-4a91-b619-900f0d0095b3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"1ba8841e-4912-4b5e-a060-6549fd10ac77","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"94730e6f-627a-4c36-9a35-7c7c9186ea41","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6b68b8cb-6886-46fa-a35a-97a7a35962af","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"904fae1b-7e10-418a-9fb4-073a5a5d844a"},{"name":"Affordability Historical From Address (Batch)","id":"72ebcd1c-1339-44bb-a9a4-44e3b1f40718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for ZIP codes with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.28</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.02</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"fac38f82-f15d-4d25-a106-010b6fc03b34","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.28,\n            \"afford_detrended\": 0.02\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"ad4ee12f-64aa-448e-ac0a-7f9b9fd4c2ea","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"088d43e9-a2e1-4cf3-96f4-1092a7c0eb0b","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"41fee8ff-2ee8-4518-aa1d-5727cb7fd206","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"72ebcd1c-1339-44bb-a9a4-44e3b1f40718"},{"name":"Batch Multiple Endpoints","id":"ecb596cf-f727-45a9-b065-15e5748a5dcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/component_mget?zipcode=33019&components=zip/details,zip/volatility","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of ZIP code level endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n<tr><td>components</td><td>string</td><td>A comma separated list of zip endpoint names. Spaces are not allowed.</td><td>zip/details,zip/volatility</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"},{"description":{"content":"<p>A comma separated list of zip endpoint names. Spaces are not allowed.</p>\n","type":"text/plain"},"key":"components","value":"zip/details,zip/volatility"}],"variable":[]}},"response":[{"id":"c91cf22b-8e29-4d42-bc49-7559b3efd6fd","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/component_mget?zipcode=33019&components=zip/details,zip/volatility","host":["https://api.housecanary.com"],"path":["v2","zip","component_mget"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"A comma separated list of zip endpoint names. Spaces are not allowed.","key":"components","value":"zip/details,zip/volatility"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"dca1b3f3-9181-4ba4-901f-d93bae0c871e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/component_mget?zipcode=33019&components=zip/details,zip/volatility","host":["https://api.housecanary.com"],"path":["v2","zip","component_mget"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"A comma separated list of zip endpoint names. Spaces are not allowed.","key":"components","value":"zip/details,zip/volatility"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"83d42e2e-b45a-46b7-8f2e-c15e205e201a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/component_mget?zipcode=33019&components=zip/details,zip/volatility","host":["https://api.housecanary.com"],"path":["v2","zip","component_mget"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"A comma separated list of zip endpoint names. Spaces are not allowed.","key":"components","value":"zip/details,zip/volatility"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"16465aae-ce13-4305-b5ca-aac0135f98cc","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/component_mget?zipcode=33019&components=zip/details,zip/volatility","host":["https://api.housecanary.com"],"path":["v2","zip","component_mget"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"A comma separated list of zip endpoint names. Spaces are not allowed.","key":"components","value":"zip/details,zip/volatility"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"ecb596cf-f727-45a9-b065-15e5748a5dcf"},{"name":"Batch Multiple Endpoints (Batch)","id":"8c766212-7aed-420a-b8de-05f4faeb8629","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/component_mget?components=zip/details,zip/volatility","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of ZIP code level endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>components</td><td>string</td><td>A comma separated list of zip endpoint names. Spaces are not allowed.</td><td>zip/details,zip/volatility</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>A comma separated list of zip endpoint names. Spaces are not allowed.</p>\n","type":"text/plain"},"key":"components","value":"zip/details,zip/volatility"}],"variable":[]}},"response":[{"id":"6c568ec2-8c49-4b35-b2c2-df1af5d3b594","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/component_mget?components=zip/details,zip/volatility","host":["https://api.housecanary.com"],"path":["v2","zip","component_mget"],"query":[{"description":"A comma separated list of zip endpoint names. Spaces are not allowed.","key":"components","value":"zip/details,zip/volatility"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"8c733e8a-000f-40a6-87f4-1d98eb77ff42","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/component_mget?components=zip/details,zip/volatility","host":["https://api.housecanary.com"],"path":["v2","zip","component_mget"],"query":[{"description":"A comma separated list of zip endpoint names. Spaces are not allowed.","key":"components","value":"zip/details,zip/volatility"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"10671233-eacf-4e5f-ad93-167ba892ecdc","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/component_mget?components=zip/details,zip/volatility","host":["https://api.housecanary.com"],"path":["v2","zip","component_mget"],"query":[{"description":"A comma separated list of zip endpoint names. Spaces are not allowed.","key":"components","value":"zip/details,zip/volatility"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"113c5b49-282b-4c50-88b0-7ea9d815138d","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/component_mget?components=zip/details,zip/volatility","host":["https://api.housecanary.com"],"path":["v2","zip","component_mget"],"query":[{"description":"A comma separated list of zip endpoint names. Spaces are not allowed.","key":"components","value":"zip/details,zip/volatility"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"8c766212-7aed-420a-b8de-05f4faeb8629"},{"name":"Market Details","id":"f683151a-1532-4dbc-9cbe-d71522602c42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/details?zipcode=33019","description":"<p>Get an overview of the current local single family detached market environment in a ZIP code, aiding in market analysis and decision-making. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Weekly, Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>multi_family</td><td>object</td><td>Market metrics for multi-family homes</td><td></td>\n        </tr>\n<tr><td>multi_family.inventory_total</td><td>number</td><td>Number of properties listed for sale</td><td>250</td>\n        </tr>\n<tr><td>multi_family.price_median</td><td>number</td><td>Median listed price</td><td>320000</td>\n        </tr>\n<tr><td>multi_family.estimated_sales_total</td><td>number</td><td>Total estimated sales based on the number of absorbed listings and likelihood of being relisted</td><td>24</td>\n        </tr>\n<tr><td>multi_family.months_of_inventory_median</td><td>number</td><td>Median months supply of actively listed properties</td><td>3.5</td>\n        </tr>\n<tr><td>multi_family.days_on_market_median</td><td>number</td><td>Median days on market of listed properties</td><td>28</td>\n        </tr>\n<tr><td>single_family</td><td>object</td><td>Market metrics for single-family homes</td><td></td>\n        </tr>\n<tr><td>single_family.inventory_total</td><td>number</td><td>Number of properties listed for sale</td><td>250</td>\n        </tr>\n<tr><td>single_family.price_median</td><td>number</td><td>Median listed price</td><td>320000</td>\n        </tr>\n<tr><td>single_family.estimated_sales_total</td><td>number</td><td>Total estimated sales based on the number of absorbed listings and likelihood of being relisted</td><td>24</td>\n        </tr>\n<tr><td>single_family.months_of_inventory_median</td><td>number</td><td>Median months supply of actively listed properties</td><td>3.5</td>\n        </tr>\n<tr><td>single_family.days_on_market_median</td><td>number</td><td>Median days on market of listed properties</td><td>28</td>\n        </tr>\n<tr><td>historical</td><td>object</td><td>Historical performance of properties in the ZIP</td><td></td>\n        </tr>\n<tr><td>historical.cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR)</td><td>0.04</td>\n        </tr>\n<tr><td>historical.cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR)</td><td>0.025</td>\n        </tr>\n<tr><td>historical.cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR)</td><td>0.035</td>\n        </tr>\n<tr><td>historical.cagr_20_years</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR)</td><td>0.045</td>\n        </tr>\n<tr><td>historical.returns_1</td><td>number</td><td>Home price appreciation for the last year based on HPI</td><td>0.06</td>\n        </tr>\n<tr><td>historical.returns_5_years</td><td>number</td><td>Home price appreciation for the last 5 years based on HPI</td><td>0.15</td>\n        </tr>\n<tr><td>historical.returns_10_years</td><td>number</td><td>Home price appreciation for the last 10 years based on HPI</td><td>0.28</td>\n        </tr>\n<tr><td>historical.returns_20_years</td><td>number</td><td>Home price appreciation for the last 20 years based on HPI</td><td>0.42</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","details"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"18d96efb-3c98-440a-875a-d78789f4ac48","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/details?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","details"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"multi_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"single_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"historical\": {\n          \"cagr_1_year\": 0.04,\n          \"cagr_5_years\": 0.025,\n          \"cagr_10_years\": 0.035,\n          \"cagr_20_years\": 0.045,\n          \"returns_1\": 0.06,\n          \"returns_5_years\": 0.15,\n          \"returns_10_years\": 0.28,\n          \"returns_20_years\": 0.42\n        }\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"multi_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"single_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"historical\": {\n          \"cagr_1_year\": 0.04,\n          \"cagr_5_years\": 0.025,\n          \"cagr_10_years\": 0.035,\n          \"cagr_20_years\": 0.045,\n          \"returns_1\": 0.06,\n          \"returns_5_years\": 0.15,\n          \"returns_10_years\": 0.28,\n          \"returns_20_years\": 0.42\n        }\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"a5776030-3641-425d-a55d-9edb9a47552f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/details?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","details"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a55b7c6d-8672-4930-87a8-b225c99c27b5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/details?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","details"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0cdcc003-cf84-4af1-8ef3-3f31745073e2","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/details?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","details"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f683151a-1532-4dbc-9cbe-d71522602c42"},{"name":"Market Details (Batch)","id":"367f58cf-1be3-4352-a06b-4f5319bf822b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/details","description":"<p>Get an overview of the current local single family detached market environment in a ZIP code, aiding in market analysis and decision-making. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Weekly, Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>multi_family</td><td>object</td><td>Market metrics for multi-family homes</td><td></td>\n        </tr>\n<tr><td>multi_family.inventory_total</td><td>number</td><td>Number of properties listed for sale</td><td>250</td>\n        </tr>\n<tr><td>multi_family.price_median</td><td>number</td><td>Median listed price</td><td>320000</td>\n        </tr>\n<tr><td>multi_family.estimated_sales_total</td><td>number</td><td>Total estimated sales based on the number of absorbed listings and likelihood of being relisted</td><td>24</td>\n        </tr>\n<tr><td>multi_family.months_of_inventory_median</td><td>number</td><td>Median months supply of actively listed properties</td><td>3.5</td>\n        </tr>\n<tr><td>multi_family.days_on_market_median</td><td>number</td><td>Median days on market of listed properties</td><td>28</td>\n        </tr>\n<tr><td>single_family</td><td>object</td><td>Market metrics for single-family homes</td><td></td>\n        </tr>\n<tr><td>single_family.inventory_total</td><td>number</td><td>Number of properties listed for sale</td><td>250</td>\n        </tr>\n<tr><td>single_family.price_median</td><td>number</td><td>Median listed price</td><td>320000</td>\n        </tr>\n<tr><td>single_family.estimated_sales_total</td><td>number</td><td>Total estimated sales based on the number of absorbed listings and likelihood of being relisted</td><td>24</td>\n        </tr>\n<tr><td>single_family.months_of_inventory_median</td><td>number</td><td>Median months supply of actively listed properties</td><td>3.5</td>\n        </tr>\n<tr><td>single_family.days_on_market_median</td><td>number</td><td>Median days on market of listed properties</td><td>28</td>\n        </tr>\n<tr><td>historical</td><td>object</td><td>Historical performance of properties in the ZIP</td><td></td>\n        </tr>\n<tr><td>historical.cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR)</td><td>0.04</td>\n        </tr>\n<tr><td>historical.cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR)</td><td>0.025</td>\n        </tr>\n<tr><td>historical.cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR)</td><td>0.035</td>\n        </tr>\n<tr><td>historical.cagr_20_years</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR)</td><td>0.045</td>\n        </tr>\n<tr><td>historical.returns_1</td><td>number</td><td>Home price appreciation for the last year based on HPI</td><td>0.06</td>\n        </tr>\n<tr><td>historical.returns_5_years</td><td>number</td><td>Home price appreciation for the last 5 years based on HPI</td><td>0.15</td>\n        </tr>\n<tr><td>historical.returns_10_years</td><td>number</td><td>Home price appreciation for the last 10 years based on HPI</td><td>0.28</td>\n        </tr>\n<tr><td>historical.returns_20_years</td><td>number</td><td>Home price appreciation for the last 20 years based on HPI</td><td>0.42</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","details"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"bd59d6f8-e16d-4f48-a6e3-b4597fa73d88","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"multi_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"single_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"historical\": {\n          \"cagr_1_year\": 0.04,\n          \"cagr_5_years\": 0.025,\n          \"cagr_10_years\": 0.035,\n          \"cagr_20_years\": 0.045,\n          \"returns_1\": 0.06,\n          \"returns_5_years\": 0.15,\n          \"returns_10_years\": 0.28,\n          \"returns_20_years\": 0.42\n        }\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"multi_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"single_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"historical\": {\n          \"cagr_1_year\": 0.04,\n          \"cagr_5_years\": 0.025,\n          \"cagr_10_years\": 0.035,\n          \"cagr_20_years\": 0.045,\n          \"returns_1\": 0.06,\n          \"returns_5_years\": 0.15,\n          \"returns_10_years\": 0.28,\n          \"returns_20_years\": 0.42\n        }\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"7e86804e-d78e-407e-9cc1-a4839a97df07","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/details"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"838b94c8-593d-4756-88d8-451705f04669","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/details"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"5739330b-1586-43e5-a7f3-26ea63475d37","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/details"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"367f58cf-1be3-4352-a06b-4f5319bf822b"},{"name":"Market Details From Address","id":"fbabfcdf-5b08-402c-9a50-f2d8f401b65e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Get an overview of the current local single family detached market environment in a ZIP code, aiding in market analysis and decision-making. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Weekly, Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>multi_family</td><td>object</td><td>Market metrics for multi-family homes</td><td></td>\n        </tr>\n<tr><td>multi_family.inventory_total</td><td>number</td><td>Number of properties listed for sale</td><td>250</td>\n        </tr>\n<tr><td>multi_family.price_median</td><td>number</td><td>Median listed price</td><td>320000</td>\n        </tr>\n<tr><td>multi_family.estimated_sales_total</td><td>number</td><td>Total estimated sales based on the number of absorbed listings and likelihood of being relisted</td><td>24</td>\n        </tr>\n<tr><td>multi_family.months_of_inventory_median</td><td>number</td><td>Median months supply of actively listed properties</td><td>3.5</td>\n        </tr>\n<tr><td>multi_family.days_on_market_median</td><td>number</td><td>Median days on market of listed properties</td><td>28</td>\n        </tr>\n<tr><td>single_family</td><td>object</td><td>Market metrics for single-family homes</td><td></td>\n        </tr>\n<tr><td>single_family.inventory_total</td><td>number</td><td>Number of properties listed for sale</td><td>250</td>\n        </tr>\n<tr><td>single_family.price_median</td><td>number</td><td>Median listed price</td><td>320000</td>\n        </tr>\n<tr><td>single_family.estimated_sales_total</td><td>number</td><td>Total estimated sales based on the number of absorbed listings and likelihood of being relisted</td><td>24</td>\n        </tr>\n<tr><td>single_family.months_of_inventory_median</td><td>number</td><td>Median months supply of actively listed properties</td><td>3.5</td>\n        </tr>\n<tr><td>single_family.days_on_market_median</td><td>number</td><td>Median days on market of listed properties</td><td>28</td>\n        </tr>\n<tr><td>historical</td><td>object</td><td>Historical performance of properties in the ZIP</td><td></td>\n        </tr>\n<tr><td>historical.cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR)</td><td>0.04</td>\n        </tr>\n<tr><td>historical.cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR)</td><td>0.025</td>\n        </tr>\n<tr><td>historical.cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR)</td><td>0.035</td>\n        </tr>\n<tr><td>historical.cagr_20_years</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR)</td><td>0.045</td>\n        </tr>\n<tr><td>historical.returns_1</td><td>number</td><td>Home price appreciation for the last year based on HPI</td><td>0.06</td>\n        </tr>\n<tr><td>historical.returns_5_years</td><td>number</td><td>Home price appreciation for the last 5 years based on HPI</td><td>0.15</td>\n        </tr>\n<tr><td>historical.returns_10_years</td><td>number</td><td>Home price appreciation for the last 10 years based on HPI</td><td>0.28</td>\n        </tr>\n<tr><td>historical.returns_20_years</td><td>number</td><td>Home price appreciation for the last 20 years based on HPI</td><td>0.42</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_details"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"98ead506-401a-43db-ba98-952641e368ba","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"multi_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"single_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"historical\": {\n          \"cagr_1_year\": 0.04,\n          \"cagr_5_years\": 0.025,\n          \"cagr_10_years\": 0.035,\n          \"cagr_20_years\": 0.045,\n          \"returns_1\": 0.06,\n          \"returns_5_years\": 0.15,\n          \"returns_10_years\": 0.28,\n          \"returns_20_years\": 0.42\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"multi_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"single_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"historical\": {\n          \"cagr_1_year\": 0.04,\n          \"cagr_5_years\": 0.025,\n          \"cagr_10_years\": 0.035,\n          \"cagr_20_years\": 0.045,\n          \"returns_1\": 0.06,\n          \"returns_5_years\": 0.15,\n          \"returns_10_years\": 0.28,\n          \"returns_20_years\": 0.42\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9f2014b2-a497-4852-b798-89577d1b070c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"89b261a3-34e3-44fe-b322-eac0c6243989","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"edb00a4e-cc66-4a01-af7a-2d084622b799","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"fbabfcdf-5b08-402c-9a50-f2d8f401b65e"},{"name":"Market Details From Address (Batch)","id":"7de30623-9c07-4e4e-b52d-3ba2be728246","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_details","description":"<p>Get an overview of the current local single family detached market environment in a ZIP code, aiding in market analysis and decision-making. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Weekly, Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>multi_family</td><td>object</td><td>Market metrics for multi-family homes</td><td></td>\n        </tr>\n<tr><td>multi_family.inventory_total</td><td>number</td><td>Number of properties listed for sale</td><td>250</td>\n        </tr>\n<tr><td>multi_family.price_median</td><td>number</td><td>Median listed price</td><td>320000</td>\n        </tr>\n<tr><td>multi_family.estimated_sales_total</td><td>number</td><td>Total estimated sales based on the number of absorbed listings and likelihood of being relisted</td><td>24</td>\n        </tr>\n<tr><td>multi_family.months_of_inventory_median</td><td>number</td><td>Median months supply of actively listed properties</td><td>3.5</td>\n        </tr>\n<tr><td>multi_family.days_on_market_median</td><td>number</td><td>Median days on market of listed properties</td><td>28</td>\n        </tr>\n<tr><td>single_family</td><td>object</td><td>Market metrics for single-family homes</td><td></td>\n        </tr>\n<tr><td>single_family.inventory_total</td><td>number</td><td>Number of properties listed for sale</td><td>250</td>\n        </tr>\n<tr><td>single_family.price_median</td><td>number</td><td>Median listed price</td><td>320000</td>\n        </tr>\n<tr><td>single_family.estimated_sales_total</td><td>number</td><td>Total estimated sales based on the number of absorbed listings and likelihood of being relisted</td><td>24</td>\n        </tr>\n<tr><td>single_family.months_of_inventory_median</td><td>number</td><td>Median months supply of actively listed properties</td><td>3.5</td>\n        </tr>\n<tr><td>single_family.days_on_market_median</td><td>number</td><td>Median days on market of listed properties</td><td>28</td>\n        </tr>\n<tr><td>historical</td><td>object</td><td>Historical performance of properties in the ZIP</td><td></td>\n        </tr>\n<tr><td>historical.cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR)</td><td>0.04</td>\n        </tr>\n<tr><td>historical.cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR)</td><td>0.025</td>\n        </tr>\n<tr><td>historical.cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR)</td><td>0.035</td>\n        </tr>\n<tr><td>historical.cagr_20_years</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR)</td><td>0.045</td>\n        </tr>\n<tr><td>historical.returns_1</td><td>number</td><td>Home price appreciation for the last year based on HPI</td><td>0.06</td>\n        </tr>\n<tr><td>historical.returns_5_years</td><td>number</td><td>Home price appreciation for the last 5 years based on HPI</td><td>0.15</td>\n        </tr>\n<tr><td>historical.returns_10_years</td><td>number</td><td>Home price appreciation for the last 10 years based on HPI</td><td>0.28</td>\n        </tr>\n<tr><td>historical.returns_20_years</td><td>number</td><td>Home price appreciation for the last 20 years based on HPI</td><td>0.42</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_details"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"e5122ff1-6e5c-4a8d-a99a-bec2841a00ab","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"multi_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"single_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"historical\": {\n          \"cagr_1_year\": 0.04,\n          \"cagr_5_years\": 0.025,\n          \"cagr_10_years\": 0.035,\n          \"cagr_20_years\": 0.045,\n          \"returns_1\": 0.06,\n          \"returns_5_years\": 0.15,\n          \"returns_10_years\": 0.28,\n          \"returns_20_years\": 0.42\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"multi_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"single_family\": {\n          \"inventory_total\": 250,\n          \"price_median\": 320000,\n          \"estimated_sales_total\": 24,\n          \"months_of_inventory_median\": 3.5,\n          \"days_on_market_median\": 28\n        },\n        \"historical\": {\n          \"cagr_1_year\": 0.04,\n          \"cagr_5_years\": 0.025,\n          \"cagr_10_years\": 0.035,\n          \"cagr_20_years\": 0.045,\n          \"returns_1\": 0.06,\n          \"returns_5_years\": 0.15,\n          \"returns_10_years\": 0.28,\n          \"returns_20_years\": 0.42\n        }\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"3e120731-c710-4739-96f0-91c11b29908f","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_details"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"89c87710-744a-4966-a4ad-20bba2d98465","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_details"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0b593300-444f-4aab-8f2c-f29dec03fbeb","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_details"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7de30623-9c07-4e4e-b52d-3ba2be728246"},{"name":"Gross Rental Yield","id":"a1949668-c33f-4e59-a501-ff1df183eabf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/hcri?zipcode=33019","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a ZIP code, enabling assessment of rental market performance within a specific ZIP code.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"48b99186-370c-4436-b736-5f8e9fd4da88","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hcri?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hcri"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"da7ea255-ed93-4312-ad55-dd26e4becd3c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hcri?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hcri"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"984d0cd5-9b64-46b3-85ee-9ae07128c9b9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hcri?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hcri"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6b696dc7-2ba4-44f2-ac17-92bc2c7afa3f","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hcri?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hcri"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a1949668-c33f-4e59-a501-ff1df183eabf"},{"name":"Gross Rental Yield (Batch)","id":"b4f6a930-0af4-485c-ac07-3120c0df4bb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hcri","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a ZIP code, enabling assessment of rental market performance within a specific ZIP code.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hcri"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"180e9299-4360-4fe5-a774-d69ca0832647","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hcri"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"32b8427d-bca0-42d9-a030-25ad64bb8bb3","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hcri"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"56fe9f17-bc17-4ba8-8546-d7251d8a7209","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hcri"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a55fd09c-5201-4f0c-b16e-bd322a09b7b1","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hcri"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b4f6a930-0af4-485c-ac07-3120c0df4bb7"},{"name":"Gross Rental Yield From Address","id":"22648310-a6e9-4c8c-9a64-4e5d27d9c022","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a ZIP code, enabling assessment of rental market performance within a specific ZIP code.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"da073db7-8ec0-46f7-9d98-774eb8561767","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"a10bfd82-7456-4f4f-a7ad-b15c4b935da8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"fabf348c-7403-468d-8185-be82d5efc3da","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"19e9c6bd-fa39-4caf-8f96-70fc9c9e5387","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"22648310-a6e9-4c8c-9a64-4e5d27d9c022"},{"name":"Gross Rental Yield From Address (Batch)","id":"8ce809b3-d0be-47a0-91fc-20865002f898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hcri","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a ZIP code, enabling assessment of rental market performance within a specific ZIP code.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hcri"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"4178c26d-0871-4a55-bc7d-22ba30f4e2b1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hcri"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"bd3aa26a-990d-459c-b2d2-aaffb56eae8c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hcri"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0438d9de-8f09-4b88-bd6b-4456641f03c3","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hcri"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f620c66f-c388-401c-871d-66d67ee0df2e","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hcri"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"8ce809b3-d0be-47a0-91fc-20865002f898"},{"name":"Home Price Index Forecast","id":"8a32ae1b-1fb7-435a-91b4-8f0776063a1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/hpi_forecast?zipcode=33019","description":"<p>Access HouseCanary's proprietary forecasted price return metrics for a ZIP code, derived from the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_12mo_f</td><td>number</td><td>Forecast 1-year compound annual growth rate (CAGR)</td><td>0.035</td>\n        </tr>\n<tr><td>cagr_24mo_f</td><td>number</td><td>Forecast 2-year compound annual growth rate (CAGR)</td><td>0.045</td>\n        </tr>\n<tr><td>cagr_36mo_f</td><td>number</td><td>Forecast 3-year compound annual growth rate (CAGR)</td><td>0.055</td>\n        </tr>\n<tr><td>returns_12mo_f</td><td>number</td><td>Forecast home price appreciation for the next 12 months based on HPI forecast</td><td>0.06</td>\n        </tr>\n<tr><td>returns_24mo_f</td><td>number</td><td>Forecast home price appreciation for the next 24 months based on HPI forecast</td><td>0.12</td>\n        </tr>\n<tr><td>returns_36mo_f</td><td>number</td><td>Forecast home price appreciation for the next 36 months based on HPI forecast</td><td>0.18</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical max percent loss in HPI over a 12 month period</td><td>-0.08</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's HPI will be lower 12 months from now than the current HPI</td><td>0.25</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hpi_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"7b809451-8e1f-4289-93f7-5b419e71349e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_forecast?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_12mo_f\": 0.035,\n        \"cagr_24mo_f\": 0.045,\n        \"cagr_36mo_f\": 0.055,\n        \"returns_12mo_f\": 0.06,\n        \"returns_24mo_f\": 0.12,\n        \"returns_36mo_f\": 0.18,\n        \"max_12mo_loss\": -0.08,\n        \"risk_12mo_loss\": 0.25\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_12mo_f\": 0.035,\n        \"cagr_24mo_f\": 0.045,\n        \"cagr_36mo_f\": 0.055,\n        \"returns_12mo_f\": 0.06,\n        \"returns_24mo_f\": 0.12,\n        \"returns_36mo_f\": 0.18,\n        \"max_12mo_loss\": -0.08,\n        \"risk_12mo_loss\": 0.25\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"99572406-245f-4b50-97bb-888e8642fad2","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_forecast?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"b70d7fad-aba5-401c-9411-3c7ed54c937b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_forecast?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"8eba3a1f-6f4f-4c80-9599-f732a746ba29","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_forecast?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"8a32ae1b-1fb7-435a-91b4-8f0776063a1e"},{"name":"Home Price Index Forecast (Batch)","id":"0f73ea76-41f8-4928-96a1-8c9286f11a28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_forecast","description":"<p>Access HouseCanary's proprietary forecasted price return metrics for a ZIP code, derived from the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_12mo_f</td><td>number</td><td>Forecast 1-year compound annual growth rate (CAGR)</td><td>0.035</td>\n        </tr>\n<tr><td>cagr_24mo_f</td><td>number</td><td>Forecast 2-year compound annual growth rate (CAGR)</td><td>0.045</td>\n        </tr>\n<tr><td>cagr_36mo_f</td><td>number</td><td>Forecast 3-year compound annual growth rate (CAGR)</td><td>0.055</td>\n        </tr>\n<tr><td>returns_12mo_f</td><td>number</td><td>Forecast home price appreciation for the next 12 months based on HPI forecast</td><td>0.06</td>\n        </tr>\n<tr><td>returns_24mo_f</td><td>number</td><td>Forecast home price appreciation for the next 24 months based on HPI forecast</td><td>0.12</td>\n        </tr>\n<tr><td>returns_36mo_f</td><td>number</td><td>Forecast home price appreciation for the next 36 months based on HPI forecast</td><td>0.18</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical max percent loss in HPI over a 12 month period</td><td>-0.08</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's HPI will be lower 12 months from now than the current HPI</td><td>0.25</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hpi_forecast"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"984a7efc-c44e-4372-9670-811fde63ee0b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_forecast"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_12mo_f\": 0.035,\n        \"cagr_24mo_f\": 0.045,\n        \"cagr_36mo_f\": 0.055,\n        \"returns_12mo_f\": 0.06,\n        \"returns_24mo_f\": 0.12,\n        \"returns_36mo_f\": 0.18,\n        \"max_12mo_loss\": -0.08,\n        \"risk_12mo_loss\": 0.25\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_12mo_f\": 0.035,\n        \"cagr_24mo_f\": 0.045,\n        \"cagr_36mo_f\": 0.055,\n        \"returns_12mo_f\": 0.06,\n        \"returns_24mo_f\": 0.12,\n        \"returns_36mo_f\": 0.18,\n        \"max_12mo_loss\": -0.08,\n        \"risk_12mo_loss\": 0.25\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"7b070d11-730b-4712-a6cb-c8177ee99a65","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_forecast"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"55800d28-5064-44f1-8104-d3f6afc6e965","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_forecast"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b12132e3-44f2-466e-9240-b1bd1be5e4e5","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_forecast"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0f73ea76-41f8-4928-96a1-8c9286f11a28"},{"name":"Home Price Index Forecast From Address","id":"64831333-bb54-4420-954b-414a972593b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_hpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Access HouseCanary's proprietary forecasted price return metrics for a ZIP code, derived from the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_12mo_f</td><td>number</td><td>Forecast 1-year compound annual growth rate (CAGR)</td><td>0.035</td>\n        </tr>\n<tr><td>cagr_24mo_f</td><td>number</td><td>Forecast 2-year compound annual growth rate (CAGR)</td><td>0.045</td>\n        </tr>\n<tr><td>cagr_36mo_f</td><td>number</td><td>Forecast 3-year compound annual growth rate (CAGR)</td><td>0.055</td>\n        </tr>\n<tr><td>returns_12mo_f</td><td>number</td><td>Forecast home price appreciation for the next 12 months based on HPI forecast</td><td>0.06</td>\n        </tr>\n<tr><td>returns_24mo_f</td><td>number</td><td>Forecast home price appreciation for the next 24 months based on HPI forecast</td><td>0.12</td>\n        </tr>\n<tr><td>returns_36mo_f</td><td>number</td><td>Forecast home price appreciation for the next 36 months based on HPI forecast</td><td>0.18</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical max percent loss in HPI over a 12 month period</td><td>-0.08</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's HPI will be lower 12 months from now than the current HPI</td><td>0.25</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hpi_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"3b7ac9a1-0976-4bfc-9901-91edc075f626","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_12mo_f\": 0.035,\n        \"cagr_24mo_f\": 0.045,\n        \"cagr_36mo_f\": 0.055,\n        \"returns_12mo_f\": 0.06,\n        \"returns_24mo_f\": 0.12,\n        \"returns_36mo_f\": 0.18,\n        \"max_12mo_loss\": -0.08,\n        \"risk_12mo_loss\": 0.25\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_12mo_f\": 0.035,\n        \"cagr_24mo_f\": 0.045,\n        \"cagr_36mo_f\": 0.055,\n        \"returns_12mo_f\": 0.06,\n        \"returns_24mo_f\": 0.12,\n        \"returns_36mo_f\": 0.18,\n        \"max_12mo_loss\": -0.08,\n        \"risk_12mo_loss\": 0.25\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"c918ecad-185f-4aaf-9f74-89b1d1fd7052","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"50bb9629-2e68-4a60-8590-af98c3d4dbe6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f4abaca2-a711-4174-8d9c-9e69bbea00c2","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"64831333-bb54-4420-954b-414a972593b5"},{"name":"Home Price Index Forecast From Address (Batch)","id":"154c72f5-4619-4248-9066-f2c8e9855f78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_forecast","description":"<p>Access HouseCanary's proprietary forecasted price return metrics for a ZIP code, derived from the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_12mo_f</td><td>number</td><td>Forecast 1-year compound annual growth rate (CAGR)</td><td>0.035</td>\n        </tr>\n<tr><td>cagr_24mo_f</td><td>number</td><td>Forecast 2-year compound annual growth rate (CAGR)</td><td>0.045</td>\n        </tr>\n<tr><td>cagr_36mo_f</td><td>number</td><td>Forecast 3-year compound annual growth rate (CAGR)</td><td>0.055</td>\n        </tr>\n<tr><td>returns_12mo_f</td><td>number</td><td>Forecast home price appreciation for the next 12 months based on HPI forecast</td><td>0.06</td>\n        </tr>\n<tr><td>returns_24mo_f</td><td>number</td><td>Forecast home price appreciation for the next 24 months based on HPI forecast</td><td>0.12</td>\n        </tr>\n<tr><td>returns_36mo_f</td><td>number</td><td>Forecast home price appreciation for the next 36 months based on HPI forecast</td><td>0.18</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical max percent loss in HPI over a 12 month period</td><td>-0.08</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's HPI will be lower 12 months from now than the current HPI</td><td>0.25</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hpi_forecast"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"cef752de-a8e2-46ad-b3f2-a9c74775c5b6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_forecast"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_12mo_f\": 0.035,\n        \"cagr_24mo_f\": 0.045,\n        \"cagr_36mo_f\": 0.055,\n        \"returns_12mo_f\": 0.06,\n        \"returns_24mo_f\": 0.12,\n        \"returns_36mo_f\": 0.18,\n        \"max_12mo_loss\": -0.08,\n        \"risk_12mo_loss\": 0.25\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_12mo_f\": 0.035,\n        \"cagr_24mo_f\": 0.045,\n        \"cagr_36mo_f\": 0.055,\n        \"returns_12mo_f\": 0.06,\n        \"returns_24mo_f\": 0.12,\n        \"returns_36mo_f\": 0.18,\n        \"max_12mo_loss\": -0.08,\n        \"risk_12mo_loss\": 0.25\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"c892b78c-aed2-4d48-a5cd-620a6ea4fd73","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_forecast"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"25392438-6ba9-4a7e-9877-f559684b33c9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_forecast"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0cb0bdf6-445b-4da5-ad94-50878c8150fd","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_forecast"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"154c72f5-4619-4248-9066-f2c8e9855f78"},{"name":"Home Price Index Historical","id":"8a56da11-528f-4b09-8c05-1ec6c8e6932d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/hpi_historical?zipcode=33019","description":"<p>Review HouseCanary's proprietary historical price return metrics for a ZIP code, including 1-year and 10-year compound annual growth rates, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR) in sale values</td><td>0.045</td>\n        </tr>\n<tr><td>cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR) in sale values</td><td>0.035</td>\n        </tr>\n<tr><td>cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR) in sale values</td><td>0.028</td>\n        </tr>\n<tr><td>cagr_20_years</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR) in sale values</td><td>0.03</td>\n        </tr>\n<tr><td>returns_1_year</td><td>number</td><td>Sale value appreciation for the last year based on HPI</td><td>0.06</td>\n        </tr>\n<tr><td>returns_5_years</td><td>number</td><td>Sale value appreciation for the last 5 years based on HPI</td><td>0.15</td>\n        </tr>\n<tr><td>returns_10_years</td><td>number</td><td>Sale value appreciation for the last 10 years based on HPI</td><td>0.25</td>\n        </tr>\n<tr><td>returns_20_years</td><td>number</td><td>Sale value appreciation for the last 20 years based on HPI</td><td>0.5</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hpi_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"7fa3081c-d8c4-4bb7-bf9c-806c255bb15b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_historical?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 0.045,\n        \"cagr_5_years\": 0.035,\n        \"cagr_10_years\": 0.028,\n        \"cagr_20_years\": 0.03,\n        \"returns_1_year\": 0.06,\n        \"returns_5_years\": 0.15,\n        \"returns_10_years\": 0.25,\n        \"returns_20_years\": 0.5\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 0.045,\n        \"cagr_5_years\": 0.035,\n        \"cagr_10_years\": 0.028,\n        \"cagr_20_years\": 0.03,\n        \"returns_1_year\": 0.06,\n        \"returns_5_years\": 0.15,\n        \"returns_10_years\": 0.25,\n        \"returns_20_years\": 0.5\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"4a4b9a7e-3631-4ef1-ad6b-d3c5bd48cb54","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_historical?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"880e4510-1063-4968-9d9a-fa90a234ceb3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_historical?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"bc9bdf8a-6401-4389-af69-9faeeb5a5435","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_historical?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"8a56da11-528f-4b09-8c05-1ec6c8e6932d"},{"name":"Home Price Index Historical (Batch)","id":"2962ba5d-7fac-405f-8b52-0dde95f31ac0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_historical","description":"<p>Review HouseCanary's proprietary historical price return metrics for a ZIP code, including 1-year and 10-year compound annual growth rates, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR) in sale values</td><td>0.045</td>\n        </tr>\n<tr><td>cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR) in sale values</td><td>0.035</td>\n        </tr>\n<tr><td>cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR) in sale values</td><td>0.028</td>\n        </tr>\n<tr><td>cagr_20_years</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR) in sale values</td><td>0.03</td>\n        </tr>\n<tr><td>returns_1_year</td><td>number</td><td>Sale value appreciation for the last year based on HPI</td><td>0.06</td>\n        </tr>\n<tr><td>returns_5_years</td><td>number</td><td>Sale value appreciation for the last 5 years based on HPI</td><td>0.15</td>\n        </tr>\n<tr><td>returns_10_years</td><td>number</td><td>Sale value appreciation for the last 10 years based on HPI</td><td>0.25</td>\n        </tr>\n<tr><td>returns_20_years</td><td>number</td><td>Sale value appreciation for the last 20 years based on HPI</td><td>0.5</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hpi_historical"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"ef2d74eb-e55f-4694-bede-ad96f56aa091","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_historical"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 0.045,\n        \"cagr_5_years\": 0.035,\n        \"cagr_10_years\": 0.028,\n        \"cagr_20_years\": 0.03,\n        \"returns_1_year\": 0.06,\n        \"returns_5_years\": 0.15,\n        \"returns_10_years\": 0.25,\n        \"returns_20_years\": 0.5\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 0.045,\n        \"cagr_5_years\": 0.035,\n        \"cagr_10_years\": 0.028,\n        \"cagr_20_years\": 0.03,\n        \"returns_1_year\": 0.06,\n        \"returns_5_years\": 0.15,\n        \"returns_10_years\": 0.25,\n        \"returns_20_years\": 0.5\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"17e0fa1d-f0fe-4107-a80b-1086c0b2bcc0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_historical"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c9a3ec84-b483-4a59-ad44-e430cccb634a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_historical"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4da70d77-4689-4efa-a3f2-882cca4a3006","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_historical"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2962ba5d-7fac-405f-8b52-0dde95f31ac0"},{"name":"Home Price Index Historical From Address","id":"18145900-35d0-47ff-a565-cf1b3ff29e7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_hpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Review HouseCanary's proprietary historical price return metrics for a ZIP code, including 1-year and 10-year compound annual growth rates, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR) in sale values</td><td>0.045</td>\n        </tr>\n<tr><td>cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR) in sale values</td><td>0.035</td>\n        </tr>\n<tr><td>cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR) in sale values</td><td>0.028</td>\n        </tr>\n<tr><td>cagr_20_years</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR) in sale values</td><td>0.03</td>\n        </tr>\n<tr><td>returns_1_year</td><td>number</td><td>Sale value appreciation for the last year based on HPI</td><td>0.06</td>\n        </tr>\n<tr><td>returns_5_years</td><td>number</td><td>Sale value appreciation for the last 5 years based on HPI</td><td>0.15</td>\n        </tr>\n<tr><td>returns_10_years</td><td>number</td><td>Sale value appreciation for the last 10 years based on HPI</td><td>0.25</td>\n        </tr>\n<tr><td>returns_20_years</td><td>number</td><td>Sale value appreciation for the last 20 years based on HPI</td><td>0.5</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hpi_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"b0b6ed7c-33bd-4e5f-9e14-e5b747a0273f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 0.045,\n        \"cagr_5_years\": 0.035,\n        \"cagr_10_years\": 0.028,\n        \"cagr_20_years\": 0.03,\n        \"returns_1_year\": 0.06,\n        \"returns_5_years\": 0.15,\n        \"returns_10_years\": 0.25,\n        \"returns_20_years\": 0.5\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 0.045,\n        \"cagr_5_years\": 0.035,\n        \"cagr_10_years\": 0.028,\n        \"cagr_20_years\": 0.03,\n        \"returns_1_year\": 0.06,\n        \"returns_5_years\": 0.15,\n        \"returns_10_years\": 0.25,\n        \"returns_20_years\": 0.5\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"dd788f0f-c1da-404e-91c0-a6e90d4d6c3a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"aa6b7879-a954-41a2-acf6-625d3774232c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"05b14235-6145-4310-acbf-c28379d29549","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"18145900-35d0-47ff-a565-cf1b3ff29e7b"},{"name":"Home Price Index Historical From Address (Batch)","id":"4c832125-6490-422e-8713-acfa3182fbea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_historical","description":"<p>Review HouseCanary's proprietary historical price return metrics for a ZIP code, including 1-year and 10-year compound annual growth rates, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR) in sale values</td><td>0.045</td>\n        </tr>\n<tr><td>cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR) in sale values</td><td>0.035</td>\n        </tr>\n<tr><td>cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR) in sale values</td><td>0.028</td>\n        </tr>\n<tr><td>cagr_20_years</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR) in sale values</td><td>0.03</td>\n        </tr>\n<tr><td>returns_1_year</td><td>number</td><td>Sale value appreciation for the last year based on HPI</td><td>0.06</td>\n        </tr>\n<tr><td>returns_5_years</td><td>number</td><td>Sale value appreciation for the last 5 years based on HPI</td><td>0.15</td>\n        </tr>\n<tr><td>returns_10_years</td><td>number</td><td>Sale value appreciation for the last 10 years based on HPI</td><td>0.25</td>\n        </tr>\n<tr><td>returns_20_years</td><td>number</td><td>Sale value appreciation for the last 20 years based on HPI</td><td>0.5</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hpi_historical"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"32b51e58-abbe-4958-91a9-089e9b14b5af","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_historical"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 0.045,\n        \"cagr_5_years\": 0.035,\n        \"cagr_10_years\": 0.028,\n        \"cagr_20_years\": 0.03,\n        \"returns_1_year\": 0.06,\n        \"returns_5_years\": 0.15,\n        \"returns_10_years\": 0.25,\n        \"returns_20_years\": 0.5\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 0.045,\n        \"cagr_5_years\": 0.035,\n        \"cagr_10_years\": 0.028,\n        \"cagr_20_years\": 0.03,\n        \"returns_1_year\": 0.06,\n        \"returns_5_years\": 0.15,\n        \"returns_10_years\": 0.25,\n        \"returns_20_years\": 0.5\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"670b62ca-931a-4635-abd5-45799c8213ff","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_historical"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a4d569e0-9710-4b0c-8e0e-381cb2471f17","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_historical"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e9bb9b7f-9700-4fba-9196-84c800f35ea5","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_historical"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"4c832125-6490-422e-8713-acfa3182fbea"},{"name":"Home Price Index Forecast (Time Series)","id":"5ee5a91c-946e-4bab-ad48-37d0948b5b78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a ZIP code, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.45</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>223.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.12</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.23</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"c2d0ab8e-019a-45a7-b5b8-f13e30f644cb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"fa7f4bbe-5902-49aa-ad88-1181d271cb1b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0dc29610-b88c-4470-b104-7343dd90dbb0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e1e1e5c0-ab78-47ff-912c-38688e1954da","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5ee5a91c-946e-4bab-ad48-37d0948b5b78"},{"name":"Home Price Index Forecast (Time Series) (Batch)","id":"2a561333-6e4c-4642-b5ac-19aeb8acb8b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a ZIP code, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.45</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>223.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.12</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.23</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"f3e6bc11-eae1-4a31-b23a-35232555900e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"d52292f7-3371-4dbe-bdbd-8db33aa9dc26","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"94e1522f-5bf3-4bc3-a99a-70d4dc0ae00f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0b5885b6-8f2d-4313-a368-bf32ada1e78a","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2a561333-6e4c-4642-b5ac-19aeb8acb8b9"},{"name":"Home Price Index Forecast (Time Series) From Address","id":"bb435524-712b-44fa-9799-fc545d488d29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a ZIP code, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.45</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>223.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.12</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.23</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"57af6bbb-b819-4311-b260-ed2b2f95f3c2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"1c44894d-08c3-4337-8321-13af9e3119a7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"37cf23a9-cf2b-4ecd-a7fa-b59575a48b64","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0790f095-5d97-401f-8af7-83dcf5d290db","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"bb435524-712b-44fa-9799-fc545d488d29"},{"name":"Home Price Index Forecast (Time Series) From Address (Batch)","id":"32ec046f-6ea6-4217-ad30-387caadacc45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a ZIP code, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.45</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>223.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.12</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.23</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"954ac66a-5728-4eb7-8913-a75da32dbd5a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b18b241d-f2e1-4bb2-bf70-1b995ce65941","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"86731336-c636-4bd7-a206-068b7db9f98d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"bc4ba2bc-dab6-4f8b-a4ed-c6ee300a2552","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"32ec046f-6ea6-4217-ad30-387caadacc45"},{"name":"Home Price Index Historical (Time Series)","id":"e13d486e-5391-4f45-b797-137f3ac388ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/hpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a ZIP code, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.45</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>223.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.12</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.23</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"65918622-ff17-49b5-a059-b39c20e91004","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"6e93ba16-bb82-4d15-b2ef-2523b8623656","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3475d64c-31dd-4f67-ab66-7d15800d6ddd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"3edafe09-e361-4c1a-8bcf-89dd6d9758a4","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e13d486e-5391-4f45-b797-137f3ac388ba"},{"name":"Home Price Index Historical (Time Series) (Batch)","id":"31608759-3d97-418a-97d1-7bec374af6bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a ZIP code, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.45</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>223.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.12</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.23</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"7e552f0c-2fb4-497d-9654-01bbe3e01feb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"edc5abfd-9165-41b5-9503-8c8ee1551e9d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"573e3274-515f-4dc6-9afc-7893a24fdda1","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b501044a-96cd-4895-94b9-4660e1d3fb9f","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"31608759-3d97-418a-97d1-7bec374af6bb"},{"name":"Home Price Index Historical (Time Series) From Address","id":"7e4e5384-b5ca-46f5-adeb-54e860f07688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a ZIP code, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.45</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>223.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.12</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.23</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"ab75536f-2166-4018-963a-a777a63076fc","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"45ac1789-348b-4528-bac5-09c350c3e5f8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d726dbf0-5cb3-4071-8aab-a6b161ba78f4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"8f89448d-b52b-4463-97d0-8368dec57d7f","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7e4e5384-b5ca-46f5-adeb-54e860f07688"},{"name":"Home Price Index Historical (Time Series) From Address (Batch)","id":"752f95b9-5e73-4123-9be3-217b543d7261","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a ZIP code, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.45</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>223.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.12</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.23</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"6320ec8d-4a66-43ea-b026-31fa2eeeb9a1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.45,\n            \"hpi_real\": 223.67,\n            \"hpi_trend\": 210.12,\n            \"hpi_distance\": 1.23,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"44af1d88-0a40-43de-a8a1-584aab38a66f","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c7653e98-4278-4460-aae6-38060cc6bc69","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"98898f9d-7623-4944-86e8-e32530cdb2b2","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"752f95b9-5e73-4123-9be3-217b543d7261"},{"name":"Market Quality","id":"4fa94bd3-96d3-4d9e-acfb-1ba9520923fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/market_grade?zipcode=33019","description":"<p>Obtain HouseCanary's proprietary market grade, representing the relative desirability and volatility of the ZIP code compared to others in the same market, to better assess investment opportunities at different points throughout the housing cycle. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>market_grade</td><td>string</td><td>Grade derived from a HouseCanary proprietary cluster algorithm. One of [A, B, C, D, F] with A being least volatile across market cycles and F being most volatile.</td><td>A</td>\n        <td>[A, B, C, D, F]</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","market_grade"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"2667983c-9827-4879-a3e5-288f2c84505e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/market_grade?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","market_grade"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/market_grade\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"market_grade\": \"A\"\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/market_grade\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"market_grade\": \"A\"\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"d22a414c-9f74-4303-a7dc-ebf86c7f5173","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/market_grade?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","market_grade"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"b0772812-94f5-416a-b68d-b5d8936687b3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/market_grade?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","market_grade"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1e747d92-defd-45fc-a778-dac7dec321f5","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/market_grade?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","market_grade"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"4fa94bd3-96d3-4d9e-acfb-1ba9520923fb"},{"name":"Market Quality (Batch)","id":"b5d7fb0c-70f9-4dd6-94d6-be31f79a45f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/market_grade","description":"<p>Obtain HouseCanary's proprietary market grade, representing the relative desirability and volatility of the ZIP code compared to others in the same market, to better assess investment opportunities at different points throughout the housing cycle. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>market_grade</td><td>string</td><td>Grade derived from a HouseCanary proprietary cluster algorithm. One of [A, B, C, D, F] with A being least volatile across market cycles and F being most volatile.</td><td>A</td>\n        <td>[A, B, C, D, F]</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","market_grade"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"97041b6c-af08-425c-b0bf-a7176cf6d780","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/market_grade"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/market_grade\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"market_grade\": \"A\"\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/market_grade\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"market_grade\": \"A\"\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"012f15d3-0fb5-4b77-a8fc-7513aaec97d3","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/market_grade"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"96dd7891-f2a7-4126-885a-434c784317f1","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/market_grade"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"d2d266c3-157e-4074-b5b5-fec0832f8b07","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/market_grade"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b5d7fb0c-70f9-4dd6-94d6-be31f79a45f0"},{"name":"Market Quality From Address","id":"e0b1e65e-97dc-480d-be0f-ab7d4dd81b72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_market_grade?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Obtain HouseCanary's proprietary market grade, representing the relative desirability and volatility of the ZIP code compared to others in the same market, to better assess investment opportunities at different points throughout the housing cycle. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>market_grade</td><td>string</td><td>Grade derived from a HouseCanary proprietary cluster algorithm. One of [A, B, C, D, F] with A being least volatile across market cycles and F being most volatile.</td><td>A</td>\n        <td>[A, B, C, D, F]</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_market_grade"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"87c39a00-28c6-4f09-908c-f5e04f937ad2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_market_grade?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_market_grade"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_market_grade\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"market_grade\": \"A\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_market_grade\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"market_grade\": \"A\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"2776bafa-70fa-4a1a-b03e-d935cec031a3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_market_grade?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_market_grade"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"663354b6-d890-4310-aede-9ccd93807839","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_market_grade?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_market_grade"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"3da7263d-115a-4e0e-8acb-3383c098ed99","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_market_grade?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_market_grade"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e0b1e65e-97dc-480d-be0f-ab7d4dd81b72"},{"name":"Market Quality From Address (Batch)","id":"24bc0b8b-ff4c-4158-86ad-6e7136fdeda8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_market_grade","description":"<p>Obtain HouseCanary's proprietary market grade, representing the relative desirability and volatility of the ZIP code compared to others in the same market, to better assess investment opportunities at different points throughout the housing cycle. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Annually</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>market_grade</td><td>string</td><td>Grade derived from a HouseCanary proprietary cluster algorithm. One of [A, B, C, D, F] with A being least volatile across market cycles and F being most volatile.</td><td>A</td>\n        <td>[A, B, C, D, F]</td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_market_grade"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"62e9563a-7e82-4adf-b930-37b8daf05647","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_market_grade"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_market_grade\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"market_grade\": \"A\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_market_grade\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"market_grade\": \"A\"\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"226529fe-63f4-4178-af98-f8309f225956","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_market_grade"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"fd553c76-c4dd-4f4e-b60a-0e53ad48719e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_market_grade"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"5e5e5e77-cdf5-4561-9001-c2acf4ce77da","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_market_grade"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"24bc0b8b-ff4c-4158-86ad-6e7136fdeda8"},{"name":"Rental Price Index Forecast","id":"f0f09a48-48b8-4bcb-8835-44c04414a2e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/rpi_forecast?zipcode=33019","description":"<p>Access HouseCanary's proprietary forecasted rental return metrics for a local ZIP code, derived from the HouseCanary rental price index (RPI), for insightful rental market analysis. RPI's are measured $ per SqFt. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>returns_12mo_f</td><td>number</td><td>Forecast rental value appreciation for the next 12 months based on HPI forecast</td><td>4.2</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical max percent loss in RPI over a 12 month period</td><td>-3.5</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's RPI will be lower 12 months from now than the current RPI</td><td>0.32</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","rpi_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"f6e87f1e-65ee-43cc-92f9-d9759a6f131b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_forecast?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/rpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"returns_12mo_f\": 4.2,\n        \"max_12mo_loss\": -3.5,\n        \"risk_12mo_loss\": 0.32\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/rpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"returns_12mo_f\": 4.2,\n        \"max_12mo_loss\": -3.5,\n        \"risk_12mo_loss\": 0.32\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"a5918835-c087-45bc-b2f0-f44b1c87f7fc","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_forecast?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"5bbf9b23-f27c-42e7-a7ad-3b493f48bb4c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_forecast?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"097aebe3-fb40-43c7-b91b-4515a0fa7b66","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_forecast?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f0f09a48-48b8-4bcb-8835-44c04414a2e8"},{"name":"Rental Price Index Forecast (Batch)","id":"a2574fff-1a90-4b35-8c85-7f1867c13d1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_forecast","description":"<p>Access HouseCanary's proprietary forecasted rental return metrics for a local ZIP code, derived from the HouseCanary rental price index (RPI), for insightful rental market analysis. RPI's are measured $ per SqFt. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>returns_12mo_f</td><td>number</td><td>Forecast rental value appreciation for the next 12 months based on HPI forecast</td><td>4.2</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical max percent loss in RPI over a 12 month period</td><td>-3.5</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's RPI will be lower 12 months from now than the current RPI</td><td>0.32</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","rpi_forecast"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"65fac484-966a-456f-9f06-acfc682359db","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_forecast"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/rpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"returns_12mo_f\": 4.2,\n        \"max_12mo_loss\": -3.5,\n        \"risk_12mo_loss\": 0.32\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/rpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"returns_12mo_f\": 4.2,\n        \"max_12mo_loss\": -3.5,\n        \"risk_12mo_loss\": 0.32\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"035f6717-c0d3-4066-887d-2a63e7bc394e","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_forecast"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"93f6ece2-6955-452e-9615-7c709450e377","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_forecast"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e89e18fd-cc24-4674-a59c-8455f0e76d0b","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_forecast"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a2574fff-1a90-4b35-8c85-7f1867c13d1c"},{"name":"Rental Price Index Forecast From Address","id":"806a3819-5951-4de9-bca8-efc8daba2193","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_rpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Access HouseCanary's proprietary forecasted rental return metrics for a local ZIP code, derived from the HouseCanary rental price index (RPI), for insightful rental market analysis. RPI's are measured $ per SqFt. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>returns_12mo_f</td><td>number</td><td>Forecast rental value appreciation for the next 12 months based on HPI forecast</td><td>4.2</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical max percent loss in RPI over a 12 month period</td><td>-3.5</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's RPI will be lower 12 months from now than the current RPI</td><td>0.32</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_rpi_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"ea323c38-4438-4169-ab01-435f7a0bb1a2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_rpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"returns_12mo_f\": 4.2,\n        \"max_12mo_loss\": -3.5,\n        \"risk_12mo_loss\": 0.32\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_rpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"returns_12mo_f\": 4.2,\n        \"max_12mo_loss\": -3.5,\n        \"risk_12mo_loss\": 0.32\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"24d6846a-044c-47d8-b399-145f537f4212","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"b6b5c765-11bc-43ea-a7d7-126d30cb1ca4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f416d8ad-4c46-45a9-8133-4c5acd3fb649","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"806a3819-5951-4de9-bca8-efc8daba2193"},{"name":"Rental Price Index Forecast From Address (Batch)","id":"7ba9eabd-b073-438e-b708-d9b547e05930","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_forecast","description":"<p>Access HouseCanary's proprietary forecasted rental return metrics for a local ZIP code, derived from the HouseCanary rental price index (RPI), for insightful rental market analysis. RPI's are measured $ per SqFt. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>returns_12mo_f</td><td>number</td><td>Forecast rental value appreciation for the next 12 months based on HPI forecast</td><td>4.2</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical max percent loss in RPI over a 12 month period</td><td>-3.5</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's RPI will be lower 12 months from now than the current RPI</td><td>0.32</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_rpi_forecast"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"e8da6d1a-1e7b-4e22-acef-c498d1edc2ca","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_forecast"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_rpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"returns_12mo_f\": 4.2,\n        \"max_12mo_loss\": -3.5,\n        \"risk_12mo_loss\": 0.32\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_rpi_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"returns_12mo_f\": 4.2,\n        \"max_12mo_loss\": -3.5,\n        \"risk_12mo_loss\": 0.32\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"a1e59384-52e3-44cc-9f93-08a00198f9fe","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_forecast"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"6d2518c1-c696-4d10-a45b-d1168b54a5d2","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_forecast"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"bd590546-e033-4ad8-9065-184a782fec6f","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_forecast"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7ba9eabd-b073-438e-b708-d9b547e05930"},{"name":"Rental Price Index Historical","id":"d641e7f1-6788-42dd-94ed-e9b96d2ae60a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/rpi_historical?zipcode=33019","description":"<p>Review HouseCanary's proprietary historical rental return metrics for a ZIP code derived from the HouseCanary rental price index (RPI), for analysis of historical rental market price performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR) in rental values</td><td>2.8</td>\n        </tr>\n<tr><td>cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR) in rental values</td><td>4.5</td>\n        </tr>\n<tr><td>cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR) in rental values</td><td>3.2</td>\n        </tr>\n<tr><td>returns_1_year</td><td>number</td><td>Rental value appreciation for the last year based on RPI</td><td>3.7</td>\n        </tr>\n<tr><td>returns_5_years</td><td>number</td><td>Rental value appreciation for the last 5 years based on RPI</td><td>18.6</td>\n        </tr>\n<tr><td>returns_10_years</td><td>number</td><td>Rental value appreciation for the last 10 years based on RPI</td><td>32.1</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","rpi_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"c9bce1e3-4138-4d76-affb-7735d38d14c4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_historical?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/rpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 2.8,\n        \"cagr_5_years\": 4.5,\n        \"cagr_10_years\": 3.2,\n        \"returns_1_year\": 3.7,\n        \"returns_5_years\": 18.6,\n        \"returns_10_years\": 32.1\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/rpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 2.8,\n        \"cagr_5_years\": 4.5,\n        \"cagr_10_years\": 3.2,\n        \"returns_1_year\": 3.7,\n        \"returns_5_years\": 18.6,\n        \"returns_10_years\": 32.1\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"fcefe13c-3ce4-432e-80bc-48db23f601a3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_historical?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"31cd9b6e-2ad8-406d-a372-9f8e55b54b6d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_historical?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"53f74ae7-0edc-4250-86a6-756abac6b96d","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_historical?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d641e7f1-6788-42dd-94ed-e9b96d2ae60a"},{"name":"Rental Price Index Historical (Batch)","id":"709e46d4-44da-4004-a4e6-3a763d5a5039","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_historical","description":"<p>Review HouseCanary's proprietary historical rental return metrics for a ZIP code derived from the HouseCanary rental price index (RPI), for analysis of historical rental market price performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR) in rental values</td><td>2.8</td>\n        </tr>\n<tr><td>cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR) in rental values</td><td>4.5</td>\n        </tr>\n<tr><td>cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR) in rental values</td><td>3.2</td>\n        </tr>\n<tr><td>returns_1_year</td><td>number</td><td>Rental value appreciation for the last year based on RPI</td><td>3.7</td>\n        </tr>\n<tr><td>returns_5_years</td><td>number</td><td>Rental value appreciation for the last 5 years based on RPI</td><td>18.6</td>\n        </tr>\n<tr><td>returns_10_years</td><td>number</td><td>Rental value appreciation for the last 10 years based on RPI</td><td>32.1</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","rpi_historical"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"4e61b599-beec-45d2-822d-dd7c809d883d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_historical"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/rpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 2.8,\n        \"cagr_5_years\": 4.5,\n        \"cagr_10_years\": 3.2,\n        \"returns_1_year\": 3.7,\n        \"returns_5_years\": 18.6,\n        \"returns_10_years\": 32.1\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/rpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 2.8,\n        \"cagr_5_years\": 4.5,\n        \"cagr_10_years\": 3.2,\n        \"returns_1_year\": 3.7,\n        \"returns_5_years\": 18.6,\n        \"returns_10_years\": 32.1\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"2e4a89b7-1b53-49a6-bc91-5c01a1afed12","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_historical"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3dbed843-b06f-4588-9995-d32bca22abf3","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_historical"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"395c8cea-1a5f-42b8-866a-27fbf2e3cafe","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_historical"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"709e46d4-44da-4004-a4e6-3a763d5a5039"},{"name":"Rental Price Index Historical From Address","id":"dae14fb9-74f1-43cd-9f80-8ab921641dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_rpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Review HouseCanary's proprietary historical rental return metrics for a ZIP code derived from the HouseCanary rental price index (RPI), for analysis of historical rental market price performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR) in rental values</td><td>2.8</td>\n        </tr>\n<tr><td>cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR) in rental values</td><td>4.5</td>\n        </tr>\n<tr><td>cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR) in rental values</td><td>3.2</td>\n        </tr>\n<tr><td>returns_1_year</td><td>number</td><td>Rental value appreciation for the last year based on RPI</td><td>3.7</td>\n        </tr>\n<tr><td>returns_5_years</td><td>number</td><td>Rental value appreciation for the last 5 years based on RPI</td><td>18.6</td>\n        </tr>\n<tr><td>returns_10_years</td><td>number</td><td>Rental value appreciation for the last 10 years based on RPI</td><td>32.1</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_rpi_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"fceb2e76-48e4-4eef-ab21-e3b54022baef","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_rpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 2.8,\n        \"cagr_5_years\": 4.5,\n        \"cagr_10_years\": 3.2,\n        \"returns_1_year\": 3.7,\n        \"returns_5_years\": 18.6,\n        \"returns_10_years\": 32.1\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_rpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 2.8,\n        \"cagr_5_years\": 4.5,\n        \"cagr_10_years\": 3.2,\n        \"returns_1_year\": 3.7,\n        \"returns_5_years\": 18.6,\n        \"returns_10_years\": 32.1\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"86b76306-a72e-4c8e-9fae-e99b816f5566","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f6e22afc-ed1c-4f25-909e-6e31e411c614","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"dc391294-f6cf-4ccc-8491-da05c3ac7c5e","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"dae14fb9-74f1-43cd-9f80-8ab921641dee"},{"name":"Rental Price Index Historical From Address (Batch)","id":"aaa591cf-f804-497f-af1f-2beac4ff6886","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_historical","description":"<p>Review HouseCanary's proprietary historical rental return metrics for a ZIP code derived from the HouseCanary rental price index (RPI), for analysis of historical rental market price performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>cagr_1_year</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR) in rental values</td><td>2.8</td>\n        </tr>\n<tr><td>cagr_5_years</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR) in rental values</td><td>4.5</td>\n        </tr>\n<tr><td>cagr_10_years</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR) in rental values</td><td>3.2</td>\n        </tr>\n<tr><td>returns_1_year</td><td>number</td><td>Rental value appreciation for the last year based on RPI</td><td>3.7</td>\n        </tr>\n<tr><td>returns_5_years</td><td>number</td><td>Rental value appreciation for the last 5 years based on RPI</td><td>18.6</td>\n        </tr>\n<tr><td>returns_10_years</td><td>number</td><td>Rental value appreciation for the last 10 years based on RPI</td><td>32.1</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_rpi_historical"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"4add87a7-0ebd-4720-b992-1e144392efdf","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_historical"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_rpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 2.8,\n        \"cagr_5_years\": 4.5,\n        \"cagr_10_years\": 3.2,\n        \"returns_1_year\": 3.7,\n        \"returns_5_years\": 18.6,\n        \"returns_10_years\": 32.1\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_rpi_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"cagr_1_year\": 2.8,\n        \"cagr_5_years\": 4.5,\n        \"cagr_10_years\": 3.2,\n        \"returns_1_year\": 3.7,\n        \"returns_5_years\": 18.6,\n        \"returns_10_years\": 32.1\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"3b1349a2-5538-450d-9ebd-67ebfa6afe89","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_historical"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"146c5eec-77f3-4a9c-aa9b-af3e76d5732e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_historical"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1c115db7-c2e7-48ce-adb1-5b297c37cd9c","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_historical"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"aaa591cf-f804-497f-af1f-2beac4ff6886"},{"name":"Rental Price Index Forecast (Time Series)","id":"b914bcc2-e148-4cca-8139-efafc7990300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a ZIP code, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical RPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>2.45</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"de34cb05-fd45-4ee4-ae70-524d6256eb2c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"4cc1afd1-d6c0-431b-8431-67ae22d77ea6","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"98373470-65ae-4ebf-b8b6-96baf26732cd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2415317d-753f-4a3e-91a0-ce0adc0bace1","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_forecast"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b914bcc2-e148-4cca-8139-efafc7990300"},{"name":"Rental Price Index Forecast (Time Series) (Batch)","id":"433cbd11-61b9-4b5e-b7da-6c054871dbf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a ZIP code, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical RPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>2.45</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"8a3fcb97-5d08-4851-b63f-279807bb3d9c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"546c140a-ff7e-4ae3-9750-8c6048c1da54","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"68fe9a98-414f-4b16-be0d-29b8eeabbc6c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2803417e-7add-4ca8-a54e-39197a4bf906","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"433cbd11-61b9-4b5e-b7da-6c054871dbf8"},{"name":"Rental Price Index Forecast (Time Series) From Address","id":"25af3fca-7447-47c3-a45c-987075c9bff2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a ZIP code, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical RPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>2.45</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"ea2c3a4b-225a-4e23-8a5f-270acf0444c3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9b2d506a-fd65-4404-b533-edf3606e57e9","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"80ce22dd-5a38-4382-a0a0-8789e400183e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"42efc8b3-554c-46eb-b45d-eb8c23bfc6c5","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"25af3fca-7447-47c3-a45c-987075c9bff2"},{"name":"Rental Price Index Forecast (Time Series) From Address (Batch)","id":"768a9f09-862b-417e-b6de-594142ded012","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a ZIP code, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical RPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>2.45</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"37cda193-7f04-4b82-a8fc-16bb0e53caf7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"8a691367-1566-4952-95cc-b33702223c75","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"6eee3be5-74a5-4dc4-b8a1-af2541513b9d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"34b79081-122d-4b9b-b947-55df995df2b5","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"768a9f09-862b-417e-b6de-594142ded012"},{"name":"Rental Price Index Historical (Time Series)","id":"91984b67-a1c2-4bc5-a251-cb45480209f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/rpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a ZIP code, providing valuable insights into past rental market trends and performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical RPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>2.45</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"82e3d463-8c8b-4757-80a8-d1963055cbd4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"fea749b8-9d5e-4de9-8bbc-7a0fe0e84204","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2d3bc80c-7a86-4af6-8cbc-35e58862b441","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0b6d3b05-a129-44d9-a1e3-3bcc8a9a535a","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_historical?zipcode=33019&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_historical"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"91984b67-a1c2-4bc5-a251-cb45480209f6"},{"name":"Rental Price Index Historical (Time Series) (Batch)","id":"529a7d1f-657d-4e2c-b14b-aa4a76d7a4ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a ZIP code, providing valuable insights into past rental market trends and performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical RPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>2.45</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"1c9bf62c-5dac-4804-aff0-d5913454a45c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"b1bae495-4ad9-4e3b-9b6d-3d98b0757f68","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"594787dc-20c7-4381-9acd-11575afad96c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9c78f2cc-6cf2-4448-bf3b-b546a70d7231","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/zip/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","zip","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"529a7d1f-657d-4e2c-b14b-aa4a76d7a4ec"},{"name":"Rental Price Index Historical (Time Series) From Address","id":"5872f30a-29d3-4ba2-908c-d2eeb2ad2e2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a ZIP code, providing valuable insights into past rental market trends and performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical RPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>2.45</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"18d21542-a34d-4bb9-abf7-4cf29f0634c8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"3e6c0dfa-e31b-4c58-b381-27fdd552443f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e23342fc-15f0-45cf-aa8d-05c4dd4bc9ac","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"53fa9fa9-cb59-4945-88fd-560e578737f1","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5872f30a-29d3-4ba2-908c-d2eeb2ad2e2a"},{"name":"Rental Price Index Historical (Time Series) From Address (Batch)","id":"0eb49731-e62b-4b39-ae91-adb431d1c4c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a ZIP code, providing valuable insights into past rental market trends and performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical RPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>2.45</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"b05189e8-5eeb-4221-81d1-e98c6bd35c3a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 2.45,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b898ea66-900c-43db-8e3b-d0ed6819ad83","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"391ca9bb-0a5f-4c31-8e5d-b48b8f8bec45","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"8c1d69a9-5711-4298-9ec5-f30651e04cba","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/zip_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","zip_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0eb49731-e62b-4b39-ae91-adb431d1c4c2"},{"name":"Market Volatility","id":"21326d5b-90e2-4699-adec-d14eba18436e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/volatility?zipcode=33019","description":"<p>Obtain HouseCanary's proprietary market volatility metrics for a local ZIP code, including beta, Sharpe ratio, and Modigliani-Modigliani risk-adjusted return, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>beta</td><td>number</td><td>Beta is a measure of the volatility, or systematic risk, of a security or a portfolio in comparison to the market as a whole. Beta is calculated by comparing the security's or portfolio's price movement to the movement of the market index. A beta of 1 indicates that the security's price moves with the market. A beta above 1 indicates that the security's price is more volatile than the market, while a beta below 1 indicates that the security's price is less volatile than the market.</td><td>1.2</td>\n        </tr>\n<tr><td>sharpe_ratio</td><td>number</td><td>Sharpe ratio is a measure for calculating risk-adjusted return. It is the average return earned in excess of the risk-free rate per unit of volatility or total risk. A high Sharpe ratio indicates that the risk-adjusted return is high. A low Sharpe ratio indicates that the risk-adjusted return is low.</td><td>0.75</td>\n        </tr>\n<tr><td>modigliani_risk_adjusted_return</td><td>number</td><td>Measure of volatility in zip HPI relative to national HPI. Values greater than 1 indicate that zip HPI is more volatile.</td><td>0.85</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","volatility"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"fe6d765b-8a5e-4291-ae01-35f67f0af616","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/volatility?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","volatility"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/volatility\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"beta\": 1.2,\n        \"sharpe_ratio\": 0.75,\n        \"modigliani_risk_adjusted_return\": 0.85\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/volatility\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"beta\": 1.2,\n        \"sharpe_ratio\": 0.75,\n        \"modigliani_risk_adjusted_return\": 0.85\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"4db1bdb7-762a-44e9-91c9-93b6ff9e0a0f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/volatility?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","volatility"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"bdea23ad-4d6d-48b6-97d4-66d5385552be","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/volatility?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","volatility"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c985ccb6-aa09-41ac-a69b-f394e525a9a7","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/zip/volatility?zipcode=33019","host":["https://api.housecanary.com"],"path":["v2","zip","volatility"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"21326d5b-90e2-4699-adec-d14eba18436e"},{"name":"Market Volatility (Batch)","id":"a8ed363e-145d-4fd6-82ed-2e25e61791fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/volatility","description":"<p>Obtain HouseCanary's proprietary market volatility metrics for a local ZIP code, including beta, Sharpe ratio, and Modigliani-Modigliani risk-adjusted return, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>beta</td><td>number</td><td>Beta is a measure of the volatility, or systematic risk, of a security or a portfolio in comparison to the market as a whole. Beta is calculated by comparing the security's or portfolio's price movement to the movement of the market index. A beta of 1 indicates that the security's price moves with the market. A beta above 1 indicates that the security's price is more volatile than the market, while a beta below 1 indicates that the security's price is less volatile than the market.</td><td>1.2</td>\n        </tr>\n<tr><td>sharpe_ratio</td><td>number</td><td>Sharpe ratio is a measure for calculating risk-adjusted return. It is the average return earned in excess of the risk-free rate per unit of volatility or total risk. A high Sharpe ratio indicates that the risk-adjusted return is high. A low Sharpe ratio indicates that the risk-adjusted return is low.</td><td>0.75</td>\n        </tr>\n<tr><td>modigliani_risk_adjusted_return</td><td>number</td><td>Measure of volatility in zip HPI relative to national HPI. Values greater than 1 indicate that zip HPI is more volatile.</td><td>0.85</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","volatility"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"ffdd840b-a7f7-4e9d-a7ca-bcea8fb52647","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/volatility"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zip/volatility\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"beta\": 1.2,\n        \"sharpe_ratio\": 0.75,\n        \"modigliani_risk_adjusted_return\": 0.85\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  },\n  {\n    \"zip/volatility\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"beta\": 1.2,\n        \"sharpe_ratio\": 0.75,\n        \"modigliani_risk_adjusted_return\": 0.85\n      }\n    },\n    \"zipcode_info\": {\n      \"zip\": \"33019\"\n    }\n  }\n]"},{"id":"a64a5dd9-d306-4029-96b9-b425329cfd90","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/volatility"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3b1fb82e-17fd-47b3-a3f1-44ffb8f5d3c3","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/volatility"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1186de1e-0371-4584-a7ab-0948a9197d4b","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"zipcode\": \"33019\"\n  },\n  {\n    \"zipcode\": \"33019\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/zip/volatility"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a8ed363e-145d-4fd6-82ed-2e25e61791fe"},{"name":"Market Volatility From Address","id":"35af0657-3444-4db5-a72c-540f19bf3480","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/zip_volatility?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Obtain HouseCanary's proprietary market volatility metrics for a local ZIP code, including beta, Sharpe ratio, and Modigliani-Modigliani risk-adjusted return, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>beta</td><td>number</td><td>Beta is a measure of the volatility, or systematic risk, of a security or a portfolio in comparison to the market as a whole. Beta is calculated by comparing the security's or portfolio's price movement to the movement of the market index. A beta of 1 indicates that the security's price moves with the market. A beta above 1 indicates that the security's price is more volatile than the market, while a beta below 1 indicates that the security's price is less volatile than the market.</td><td>1.2</td>\n        </tr>\n<tr><td>sharpe_ratio</td><td>number</td><td>Sharpe ratio is a measure for calculating risk-adjusted return. It is the average return earned in excess of the risk-free rate per unit of volatility or total risk. A high Sharpe ratio indicates that the risk-adjusted return is high. A low Sharpe ratio indicates that the risk-adjusted return is low.</td><td>0.75</td>\n        </tr>\n<tr><td>modigliani_risk_adjusted_return</td><td>number</td><td>Measure of volatility in zip HPI relative to national HPI. Values greater than 1 indicate that zip HPI is more volatile.</td><td>0.85</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_volatility"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"871a1894-22ae-48de-a2c8-b98446f56eed","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_volatility?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_volatility"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_volatility\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"beta\": 1.2,\n        \"sharpe_ratio\": 0.75,\n        \"modigliani_risk_adjusted_return\": 0.85\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_volatility\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"beta\": 1.2,\n        \"sharpe_ratio\": 0.75,\n        \"modigliani_risk_adjusted_return\": 0.85\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9984278c-4095-481f-9d8e-ce86573030cc","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_volatility?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_volatility"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"71ff2ab5-84a2-4555-93d3-e6c2072f5ef1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_volatility?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_volatility"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b387de9f-b07c-42af-bc81-7d4c6f57d0a0","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/zip_volatility?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","zip_volatility"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"35af0657-3444-4db5-a72c-540f19bf3480"},{"name":"Market Volatility From Address (Batch)","id":"dc358791-958f-4cdc-b011-6ca5636a6d2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_volatility","description":"<p>Obtain HouseCanary's proprietary market volatility metrics for a local ZIP code, including beta, Sharpe ratio, and Modigliani-Modigliani risk-adjusted return, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>beta</td><td>number</td><td>Beta is a measure of the volatility, or systematic risk, of a security or a portfolio in comparison to the market as a whole. Beta is calculated by comparing the security's or portfolio's price movement to the movement of the market index. A beta of 1 indicates that the security's price moves with the market. A beta above 1 indicates that the security's price is more volatile than the market, while a beta below 1 indicates that the security's price is less volatile than the market.</td><td>1.2</td>\n        </tr>\n<tr><td>sharpe_ratio</td><td>number</td><td>Sharpe ratio is a measure for calculating risk-adjusted return. It is the average return earned in excess of the risk-free rate per unit of volatility or total risk. A high Sharpe ratio indicates that the risk-adjusted return is high. A low Sharpe ratio indicates that the risk-adjusted return is low.</td><td>0.75</td>\n        </tr>\n<tr><td>modigliani_risk_adjusted_return</td><td>number</td><td>Measure of volatility in zip HPI relative to national HPI. Values greater than 1 indicate that zip HPI is more volatile.</td><td>0.85</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","zip_volatility"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"5a678c55-720b-4d0e-a28a-b5bd8ec71f35","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_volatility"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/zip_volatility\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"beta\": 1.2,\n        \"sharpe_ratio\": 0.75,\n        \"modigliani_risk_adjusted_return\": 0.85\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/zip_volatility\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"beta\": 1.2,\n        \"sharpe_ratio\": 0.75,\n        \"modigliani_risk_adjusted_return\": 0.85\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"8bd4a802-5f87-4960-a1e7-38afc6776da3","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_volatility"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c649facb-f906-4629-a4d4-8c1130036a82","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_volatility"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f7e3601d-ce3f-4e56-9dec-dd1b1c47602e","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/zip_volatility"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"dc358791-958f-4cdc-b011-6ca5636a6d2c"}],"id":"2f9b5c04-e120-4e49-9231-418997a76317","_postman_id":"2f9b5c04-e120-4e49-9231-418997a76317","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Metro Division Level","item":[{"name":"Affordability Forecast","id":"bd40e3e4-13da-4139-a530-c51a19de4981","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for Metropolitan Divisions with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.31</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census metrodiv ID</p>\n","type":"text/plain"},"key":"metrodiv","value":"41884"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"0210b28e-745f-44f3-a5df-7e0148d24ee1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_forecast"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"20ee8e7e-3a70-41a4-b668-376ce66987ee","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_forecast"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c7dc804a-08c2-4def-8447-851c34ebea99","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_forecast"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"243cae6d-cdf2-4bae-82a5-ab93d7a166f6","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_forecast"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"bd40e3e4-13da-4139-a530-c51a19de4981"},{"name":"Affordability Forecast (Batch)","id":"041181b8-830c-44d9-8e11-f6c6ed666085","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for Metropolitan Divisions with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.31</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"1b9fba4d-66ab-4d14-b428-836c04db2887","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"7760703d-f667-407d-9f2c-a491af544539","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ca86cb77-c575-43b0-bf29-77cb17eaa9ac","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"46fc958c-faef-46fd-996d-d579b07b4c93","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"041181b8-830c-44d9-8e11-f6c6ed666085"},{"name":"Affordability Forecast From Address","id":"f9bac64b-4585-408d-bdae-77665b5aa92f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for Metropolitan Divisions with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.31</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","metrodiv_affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"7479b8df-3ff4-4a0e-ab53-6a688c64785b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/metrodiv_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/metrodiv_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"2c7c3c54-a24f-4d30-b975-6db6ce7d5335","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4822ef11-61b3-4f38-8730-4be6cd4ed560","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"35d2a261-4a80-4770-8c84-f709a86262b7","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f9bac64b-4585-408d-bdae-77665b5aa92f"},{"name":"Affordability Forecast From Address (Batch)","id":"964cf683-f956-44e5-9667-fca7ada556bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for Metropolitan Divisions with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.31</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","metrodiv_affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"74beec18-299b-4830-9131-b4a8d23fc714","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/metrodiv_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/metrodiv_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"1cdf5f78-a51b-492e-bedb-62736b5e9e8a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f1d9e47f-7434-4df6-a10f-7a16bd8a0cd7","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"138357c1-c3c6-4720-890f-9f716926b72e","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"964cf683-f956-44e5-9667-fca7ada556bc"},{"name":"Affordability Historical","id":"624cd30b-f9c3-4ff2-af84-5f646fa8d966","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a Metropolitan Division, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.31</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census metrodiv ID</p>\n","type":"text/plain"},"key":"metrodiv","value":"41884"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"dca2c17c-e71c-4684-ae98-d4257ba0ff57","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_historical"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"8d4c3238-0892-4e78-bd32-ce0627cb71b5","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_historical"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"086c64f4-53ad-40f1-b402-37d27ab9ccb4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_historical"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4db1f121-c3a5-4966-832a-3d6092f3e5ca","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_historical"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"624cd30b-f9c3-4ff2-af84-5f646fa8d966"},{"name":"Affordability Historical (Batch)","id":"74818860-4d7f-46a9-bd8c-25fd7badeb4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a Metropolitan Division, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.31</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"daf85552-f48c-4c3f-ad1c-f744247bff6e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"df771e03-c245-4b5d-8c8c-c2de6a3914e4","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"53257b33-fb52-4c45-a39b-fd9acdd0358a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"bbb96099-ab23-42dc-9ea0-fe00e186ebb9","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"74818860-4d7f-46a9-bd8c-25fd7badeb4c"},{"name":"Affordability Historical From Address","id":"57114d70-b78d-425e-9fba-0276bdb80d23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a Metropolitan Division, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.31</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","metrodiv_affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"828d223a-b832-4a8e-9b27-623be6369d37","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/metrodiv_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/metrodiv_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"e4a91cb2-6ffb-4fc8-ad09-f16a0d8b0099","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"163c83a4-b606-49fa-b71a-c079436f55ce","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"466bd822-eb48-4207-918d-2f8186e08eeb","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"57114d70-b78d-425e-9fba-0276bdb80d23"},{"name":"Affordability Historical From Address (Batch)","id":"23023e22-9dfd-4370-a6d2-b83f27db95d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a Metropolitan Division, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.31</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","metrodiv_affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"e438baa4-0313-4b6b-8b34-3df45f999e5f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/metrodiv_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/metrodiv_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.31,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b226c68f-1675-48b0-acf4-4c94b353ad4d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1b0005a8-7d36-404c-8056-ff5012e52d65","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c85d891f-6a4a-4b82-a9fa-97392cd35d41","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"23023e22-9dfd-4370-a6d2-b83f27db95d7"},{"name":"Home Price Index Forecast (Time Series)","id":"dd7c86a3-643f-4e7b-91f7-a6fbaef30269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a Metropolitan Division, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>Home price index value</td><td>152.43</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Home price index value adjusted for inflation</td><td>143.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>The normalized distance of hpi_value from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.87</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>The normalized distance of hpi_value from the long term linear trend. Units are in standard deviations from the mean.</td><td>-0.22</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census metrodiv ID</p>\n","type":"text/plain"},"key":"metrodiv","value":"41884"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"4683b05c-b999-4d56-95ae-daebcc5a82b3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_forecast"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"7427d7e2-4341-4d0e-8a9e-7e39755f588e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_forecast"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f929f165-5f6a-45dc-b8d1-44674a13bfc9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_forecast"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"12b91352-f674-4b32-80f9-7f907d2a7a08","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_forecast"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"dd7c86a3-643f-4e7b-91f7-a6fbaef30269"},{"name":"Home Price Index Forecast (Time Series) (Batch)","id":"093aeee0-2770-45f5-80cb-6abf74b7f176","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a Metropolitan Division, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>Home price index value</td><td>152.43</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Home price index value adjusted for inflation</td><td>143.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>The normalized distance of hpi_value from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.87</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>The normalized distance of hpi_value from the long term linear trend. Units are in standard deviations from the mean.</td><td>-0.22</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"9dadf460-541c-48e6-b13c-874d1c091c55","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"7490f505-fc11-4f97-878c-43fc047f287d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0495791b-5869-4680-b518-fa91036130c0","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"16664186-b9bf-4925-a265-5ef45f0c09a4","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"093aeee0-2770-45f5-80cb-6abf74b7f176"},{"name":"Home Price Index Forecast (Time Series) From Address","id":"89996b29-aea8-4e47-8fee-b57a5d3ec9a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a Metropolitan Division, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>Home price index value</td><td>152.43</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Home price index value adjusted for inflation</td><td>143.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>The normalized distance of hpi_value from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.87</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>The normalized distance of hpi_value from the long term linear trend. Units are in standard deviations from the mean.</td><td>-0.22</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","metrodiv_hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"dc7554f3-30f5-4bcd-853c-4e374a9ebdaf","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/metrodiv_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/metrodiv_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"ba211223-40cb-4607-88c0-97dec07ebf52","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"585f0810-145a-4577-b66e-46b89a9c2a7a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"dee48ec4-1053-4eb0-a992-1c24f93e5123","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"89996b29-aea8-4e47-8fee-b57a5d3ec9a4"},{"name":"Home Price Index Forecast (Time Series) From Address (Batch)","id":"31b081af-d87d-46e4-913d-1dc766197ad3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a Metropolitan Division, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>Home price index value</td><td>152.43</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Home price index value adjusted for inflation</td><td>143.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>The normalized distance of hpi_value from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.87</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>The normalized distance of hpi_value from the long term linear trend. Units are in standard deviations from the mean.</td><td>-0.22</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","metrodiv_hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"b69a70bd-be47-413b-b6c3-5d488ae4bdf3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/metrodiv_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/metrodiv_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"2e3f2759-3f99-4532-9bd6-56f21bd58827","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"9243bb6c-a7df-4c68-8727-210605071c5e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"aeb7d39f-95b8-47ab-a785-07d00e4da432","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"31b081af-d87d-46e4-913d-1dc766197ad3"},{"name":"Home Price Index Historical (Time Series)","id":"18a44a46-ff90-4c48-ac50-c686ecd1577f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a Metropolitan Division, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>Home price index value</td><td>152.43</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Home price index value adjusted for inflation</td><td>143.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>The normalized distance of hpi_value from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.87</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>The normalized distance of hpi_value from the long term linear trend. Units are in standard deviations from the mean.</td><td>-0.22</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census metrodiv ID</p>\n","type":"text/plain"},"key":"metrodiv","value":"41884"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"11ad4ea7-9ed3-4132-a3b4-808c83307b15","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_historical"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"282e46ae-0385-4477-b338-5fd5ccbf1e0c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_historical"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"39173560-0295-46de-be4c-6b3744d0cb45","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_historical"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"593127e1-6d00-42bb-9c93-cc1d52c7d707","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?metrodiv=41884&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_historical"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"18a44a46-ff90-4c48-ac50-c686ecd1577f"},{"name":"Home Price Index Historical (Time Series) (Batch)","id":"4997500a-2400-4272-87c8-63df02bcd5c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a Metropolitan Division, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>Home price index value</td><td>152.43</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Home price index value adjusted for inflation</td><td>143.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>The normalized distance of hpi_value from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.87</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>The normalized distance of hpi_value from the long term linear trend. Units are in standard deviations from the mean.</td><td>-0.22</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"0e7c70e1-cbfc-4743-a810-637beba0c4e5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"75875ecb-9d8f-4642-9607-2d6e8544f6c3","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"93910e20-3005-4fb6-97f0-6054df70086f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"661a2f67-18c2-4f0d-998c-4fc2c5a47e08","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","metrodiv","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"4997500a-2400-4272-87c8-63df02bcd5c7"},{"name":"Home Price Index Historical (Time Series) From Address","id":"a95b0c5a-4342-4964-af19-753853875fae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a Metropolitan Division, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>Home price index value</td><td>152.43</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Home price index value adjusted for inflation</td><td>143.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>The normalized distance of hpi_value from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.87</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>The normalized distance of hpi_value from the long term linear trend. Units are in standard deviations from the mean.</td><td>-0.22</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","metrodiv_hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"9448c45c-a3cd-4eba-92f2-f401d8ec386c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/metrodiv_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/metrodiv_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"3f9dd594-ecdc-4679-af22-0ed1f43f47f6","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e94327ea-2313-4502-9772-13d6615a207a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"55337869-3fbf-4eb5-aafe-44fac7517280","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a95b0c5a-4342-4964-af19-753853875fae"},{"name":"Home Price Index Historical (Time Series) From Address (Batch)","id":"575fd7a6-4bed-4db1-a479-ccc9ff897f18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a Metropolitan Division, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>Home price index value</td><td>152.43</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Home price index value adjusted for inflation</td><td>143.67</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>The normalized distance of hpi_value from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.87</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>The normalized distance of hpi_value from the long term linear trend. Units are in standard deviations from the mean.</td><td>-0.22</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","metrodiv_hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"303a6aa9-29df-4b12-b31a-36d554242d29","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/metrodiv_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/metrodiv_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"hpi_value\": 152.43,\n            \"hpi_real\": 143.67,\n            \"hpi_trend\": 0.87,\n            \"hpi_distance\": -0.22\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"68bea28f-b1ae-4eba-9d49-7b384a95f2a5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2df47e9b-c9cd-47c2-bb45-2cc4c02786dd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f064b0a0-9c3c-4618-ade0-def2dead4978","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/metrodiv_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","metrodiv_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"575fd7a6-4bed-4db1-a479-ccc9ff897f18"},{"name":"Batch Multiple Endpoints","id":"666b9c43-98e6-4150-835d-a08909ec28c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/metrodiv/component_mget?metrodiv=41884&components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of Metropolitan Division level endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        </tr>\n<tr><td>components</td><td>string</td><td>A comma separated list of metropolitan division endpoint names. Spaces are not allowed.</td><td>metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census metrodiv ID</p>\n","type":"text/plain"},"key":"metrodiv","value":"41884"},{"description":{"content":"<p>A comma separated list of metropolitan division endpoint names. Spaces are not allowed.</p>\n","type":"text/plain"},"key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}],"variable":[]}},"response":[{"id":"c9518c78-a77a-4e62-bdc6-dbde327ccd31","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/component_mget?metrodiv=41884&components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","metrodiv","component_mget"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"A comma separated list of metropolitan division endpoint names. Spaces are not allowed.","key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"e760c6b0-7905-4f38-9650-e84fb245e6de","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/component_mget?metrodiv=41884&components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","metrodiv","component_mget"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"A comma separated list of metropolitan division endpoint names. Spaces are not allowed.","key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f1d9acff-8d2d-491a-bdb3-c7dee6cf2717","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/component_mget?metrodiv=41884&components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","metrodiv","component_mget"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"A comma separated list of metropolitan division endpoint names. Spaces are not allowed.","key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f9538ab5-ba07-4a36-b73c-ffafcebd95c0","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/metrodiv/component_mget?metrodiv=41884&components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","metrodiv","component_mget"],"query":[{"description":"5-digit US-census metrodiv ID","key":"metrodiv","value":"41884"},{"description":"A comma separated list of metropolitan division endpoint names. Spaces are not allowed.","key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"666b9c43-98e6-4150-835d-a08909ec28c2"},{"name":"Batch Multiple Endpoints (Batch)","id":"8120b3bc-1c48-4ab8-9835-ccefdeb1069c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/metrodiv/component_mget?components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of Metropolitan Division level endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>components</td><td>string</td><td>A comma separated list of metropolitan division endpoint names. Spaces are not allowed.</td><td>metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>A comma separated list of metropolitan division endpoint names. Spaces are not allowed.</p>\n","type":"text/plain"},"key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}],"variable":[]}},"response":[{"id":"700dbd61-3cbc-49fa-aaaa-3f757fa11add","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/component_mget?components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","metrodiv","component_mget"],"query":[{"description":"A comma separated list of metropolitan division endpoint names. Spaces are not allowed.","key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"metrodiv/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"metrodiv_info\": {\n      \"metrodiv\": \"41884\",\n      \"metrodiv_name\": \"San Francisco-Redwood City-South San Francisco, CA\",\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"e41ef370-7503-4132-b5bf-6e701208ffc0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/component_mget?components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","metrodiv","component_mget"],"query":[{"description":"A comma separated list of metropolitan division endpoint names. Spaces are not allowed.","key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"5dd3af64-4929-4d48-95f8-9b64e0223f5a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/component_mget?components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","metrodiv","component_mget"],"query":[{"description":"A comma separated list of metropolitan division endpoint names. Spaces are not allowed.","key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1d861e05-a6e3-4672-bc70-d01d3d7bd134","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"metrodiv\": \"41884\"\n  },\n  {\n    \"metrodiv\": \"41884\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/metrodiv/component_mget?components=metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","metrodiv","component_mget"],"query":[{"description":"A comma separated list of metropolitan division endpoint names. Spaces are not allowed.","key":"components","value":"metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"8120b3bc-1c48-4ab8-9835-ccefdeb1069c"}],"id":"6f183dde-d3b2-4432-959c-979a8016c791","_postman_id":"6f183dde-d3b2-4432-959c-979a8016c791","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Metropolitan Statistical Area Level","item":[{"name":"Affordability forecast for MSA","id":"a1fcc287-7757-486b-829e-452985383849","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for MSAs with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.265</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"da1b9c6d-8015-43c6-9dbf-fa94944deb06","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"2faa491a-7702-4092-89b2-24924c27f78a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"701c195a-5bd5-4f21-99d8-6faefc7676dc","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"7af4fe09-432c-4c47-8a52-36e7f8bf7728","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a1fcc287-7757-486b-829e-452985383849"},{"name":"Affordability forecast for MSA (Batch)","id":"89410ede-dc53-491a-b604-3ea60ecdec86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for MSAs with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.265</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"cca58283-9be4-4342-aabd-521ef196f535","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"34584c16-0cb6-4f9c-a3f5-8672f48e004b","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2053b310-6292-472d-bf42-59b55d664897","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"15de0536-a966-4769-9968-2731d1fc39c5","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"89410ede-dc53-491a-b604-3ea60ecdec86"},{"name":"Affordability forecast for MSA From Address","id":"f8462757-c3f6-423e-ae90-174417a8bcaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for MSAs with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.265</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"2e7ab161-a8b0-45f0-87b7-a1051f725084","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"081ea0d9-76e5-47a7-8fb2-46949b01c104","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a721ebe1-1c27-49df-bdab-b1e46f1c29b2","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4af68019-7242-4b72-a25f-2afc3f3b1153","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f8462757-c3f6-423e-ae90-174417a8bcaf"},{"name":"Affordability forecast for MSA From Address (Batch)","id":"ec8d01bb-b22d-4eb2-88d9-8562ad963ee0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for MSAs with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.265</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"4d5cb4f3-43f5-4418-bf17-d4afdb215777","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"8d547d36-5cc6-4049-89b0-d401340722df","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a10c527a-848b-492d-8eb8-4fd2292e1879","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4c34ccc1-abca-42ac-98e0-de091eb569cc","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"ec8d01bb-b22d-4eb2-88d9-8562ad963ee0"},{"name":"Affordability Historical","id":"942e6eee-c909-4ab6-9912-d3e656bc5903","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/affordability_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for MSAs with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.265</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"cefb1ebb-3801-4d59-a857-953c488f8bde","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"7bf4c300-d3ab-44b9-844d-2c61a3aac076","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"63efd1d2-8b80-42b8-9150-89ec0c09bb56","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1b9477aa-4b96-45a4-ab08-f18af316a949","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"942e6eee-c909-4ab6-9912-d3e656bc5903"},{"name":"Affordability Historical (Batch)","id":"24847894-4af7-478a-98bc-29851ddc87f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for MSAs with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.265</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"4a4bda99-db6a-48ab-8058-1ab665df4ed2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"a6f63a2f-5948-4c59-bb39-b2452013832a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"09e6c80d-80c2-4276-b995-127041263745","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"3eb96970-e944-4223-8d04-e184e01ac150","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"24847894-4af7-478a-98bc-29851ddc87f3"},{"name":"Affordability Historical From Address","id":"5e3a1699-5db0-4406-a095-885c6e83f31e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for MSAs with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.265</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"8333577d-e690-496c-8b7e-46d6a5c42930","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9df5d684-6f88-49d1-bd5b-4658603647ec","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4957de27-ce93-4c48-98c4-22d9b2b1ad8c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"0bd41019-38a0-4e96-a466-7b8b019f7428","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5e3a1699-5db0-4406-a095-885c6e83f31e"},{"name":"Affordability Historical From Address (Batch)","id":"1cd99f1d-b989-4c1f-8680-bc0ac4585d20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for MSAs with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.265</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.12</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"7f7a34e1-c3fb-4591-9d8a-e74bda5dcd4b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.265,\n            \"afford_detrended\": -0.12\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"3ac93bba-5815-4440-9b9a-e445a7c5f258","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"acbed269-926b-458a-88ee-27d723874dc8","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"191e9074-4d64-42cf-b880-1b387b956abe","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1cd99f1d-b989-4c1f-8680-bc0ac4585d20"},{"name":"Batch Multiple Endpoints","id":"7e5bd5e3-d5eb-44d1-968b-9d3978251fae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/component_mget?msa=38060&components=msa/details,msa/hpi_ts_forecast","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Provide a comma separated list of msa endpoint names in the components query parameter to specify which endpoints you would like to include.   \n</code></pre><h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n<tr><td>components</td><td>string</td><td>A comma separated list of msa endpoint names. Spaces are not allowed.</td><td>msa/details,msa/hpi_ts_forecast</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>A comma separated list of msa endpoint names. Spaces are not allowed.</p>\n","type":"text/plain"},"key":"components","value":"msa/details,msa/hpi_ts_forecast"}],"variable":[]}},"response":[{"id":"f0dfc7ce-eaa2-4c0d-95d8-de4d0b6d9fa5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/component_mget?msa=38060&components=msa/details,msa/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","msa","component_mget"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"A comma separated list of msa endpoint names. Spaces are not allowed.","key":"components","value":"msa/details,msa/hpi_ts_forecast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"2883e7b0-ae97-4e79-a3f6-96689254d587","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/component_mget?msa=38060&components=msa/details,msa/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","msa","component_mget"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"A comma separated list of msa endpoint names. Spaces are not allowed.","key":"components","value":"msa/details,msa/hpi_ts_forecast"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ff671263-b9f7-4008-87fb-a93c9f6a8831","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/component_mget?msa=38060&components=msa/details,msa/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","msa","component_mget"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"A comma separated list of msa endpoint names. Spaces are not allowed.","key":"components","value":"msa/details,msa/hpi_ts_forecast"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ea1318fe-bd0a-48cf-a3d1-0c864410f069","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/component_mget?msa=38060&components=msa/details,msa/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","msa","component_mget"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"A comma separated list of msa endpoint names. Spaces are not allowed.","key":"components","value":"msa/details,msa/hpi_ts_forecast"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7e5bd5e3-d5eb-44d1-968b-9d3978251fae"},{"name":"Batch Multiple Endpoints (Batch)","id":"3999dd42-e90a-4ce9-b2c6-e5f8769b58c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/component_mget?components=msa/details,msa/hpi_ts_forecast","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Provide a comma separated list of msa endpoint names in the components query parameter to specify which endpoints you would like to include.   \n</code></pre><h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>components</td><td>string</td><td>A comma separated list of msa endpoint names. Spaces are not allowed.</td><td>msa/details,msa/hpi_ts_forecast</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>A comma separated list of msa endpoint names. Spaces are not allowed.</p>\n","type":"text/plain"},"key":"components","value":"msa/details,msa/hpi_ts_forecast"}],"variable":[]}},"response":[{"id":"782d98b2-0b32-4880-aa23-5bd6797f4db6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/component_mget?components=msa/details,msa/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","msa","component_mget"],"query":[{"description":"A comma separated list of msa endpoint names. Spaces are not allowed.","key":"components","value":"msa/details,msa/hpi_ts_forecast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"ee51bfa5-8b59-4e7d-b883-110c0ab830e0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/component_mget?components=msa/details,msa/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","msa","component_mget"],"query":[{"description":"A comma separated list of msa endpoint names. Spaces are not allowed.","key":"components","value":"msa/details,msa/hpi_ts_forecast"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1091eebf-624b-415c-a516-fbd39655e461","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/component_mget?components=msa/details,msa/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","msa","component_mget"],"query":[{"description":"A comma separated list of msa endpoint names. Spaces are not allowed.","key":"components","value":"msa/details,msa/hpi_ts_forecast"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"d6da063f-5a62-4bc2-b7b2-e61af7345311","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/component_mget?components=msa/details,msa/hpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","msa","component_mget"],"query":[{"description":"A comma separated list of msa endpoint names. Spaces are not allowed.","key":"components","value":"msa/details,msa/hpi_ts_forecast"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"3999dd42-e90a-4ce9-b2c6-e5f8769b58c0"},{"name":"Returns and Risk Information","id":"11ba623e-2767-46ea-924a-0033fadbeb96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/details?msa=38060","description":"<p>Review HouseCanary's proprietary historical price return metrics for a MSA, including 1-year and 10-year compound annual growth rates, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n<tr><td>msa_name</td><td>string</td><td>Name of the msa</td><td>San Francisco-Oakland-Hayward, CA</td>\n        </tr>\n<tr><td>cagr_1</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR)</td><td>0.0432</td>\n        </tr>\n<tr><td>cagr_5</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR)</td><td>0.0319</td>\n        </tr>\n<tr><td>cagr_10</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR)</td><td>0.0256</td>\n        </tr>\n<tr><td>cagr_20</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR)</td><td>0.0198</td>\n        </tr>\n<tr><td>returns_1</td><td>number</td><td>Home price appreciation for the last year based on HPI</td><td>0.0376</td>\n        </tr>\n<tr><td>returns_5</td><td>number</td><td>Home price appreciation for the last 5 years based on HPI</td><td>0.1812</td>\n        </tr>\n<tr><td>returns_10</td><td>number</td><td>Home price appreciation for the last 10 years based on HPI</td><td>0.3197</td>\n        </tr>\n<tr><td>returns_20</td><td>number</td><td>Home price appreciation for the last 20 years based on HPI</td><td>0.5123</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical maximum percentage 12-month loss in HPI</td><td>-0.0792</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's HPI will be lower 12 months from now than the current HPI</td><td>0.158</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","details"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"}],"variable":[]}},"response":[{"id":"268276fd-d176-42bc-a3fd-a31428f97924","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/details?msa=38060","host":["https://api.housecanary.com"],"path":["v2","msa","details"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Hayward, CA\",\n        \"cagr_1\": 0.0432,\n        \"cagr_5\": 0.0319,\n        \"cagr_10\": 0.0256,\n        \"cagr_20\": 0.0198,\n        \"returns_1\": 0.0376,\n        \"returns_5\": 0.1812,\n        \"returns_10\": 0.3197,\n        \"returns_20\": 0.5123,\n        \"max_12mo_loss\": -0.0792,\n        \"risk_12mo_loss\": 0.158\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Hayward, CA\",\n        \"cagr_1\": 0.0432,\n        \"cagr_5\": 0.0319,\n        \"cagr_10\": 0.0256,\n        \"cagr_20\": 0.0198,\n        \"returns_1\": 0.0376,\n        \"returns_5\": 0.1812,\n        \"returns_10\": 0.3197,\n        \"returns_20\": 0.5123,\n        \"max_12mo_loss\": -0.0792,\n        \"risk_12mo_loss\": 0.158\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"606c32ce-ef4e-4105-825a-7fea05fbdba2","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/details?msa=38060","host":["https://api.housecanary.com"],"path":["v2","msa","details"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"11686dab-6913-48f2-88cc-391422f7d957","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/details?msa=38060","host":["https://api.housecanary.com"],"path":["v2","msa","details"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6c778e0f-b61d-404c-9fad-f4af57640b61","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/details?msa=38060","host":["https://api.housecanary.com"],"path":["v2","msa","details"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"11ba623e-2767-46ea-924a-0033fadbeb96"},{"name":"Returns and Risk Information (Batch)","id":"7112e492-4d1f-4958-a9c0-db86375a1ad3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/details","description":"<p>Review HouseCanary's proprietary historical price return metrics for a MSA, including 1-year and 10-year compound annual growth rates, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n<tr><td>msa_name</td><td>string</td><td>Name of the msa</td><td>San Francisco-Oakland-Hayward, CA</td>\n        </tr>\n<tr><td>cagr_1</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR)</td><td>0.0432</td>\n        </tr>\n<tr><td>cagr_5</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR)</td><td>0.0319</td>\n        </tr>\n<tr><td>cagr_10</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR)</td><td>0.0256</td>\n        </tr>\n<tr><td>cagr_20</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR)</td><td>0.0198</td>\n        </tr>\n<tr><td>returns_1</td><td>number</td><td>Home price appreciation for the last year based on HPI</td><td>0.0376</td>\n        </tr>\n<tr><td>returns_5</td><td>number</td><td>Home price appreciation for the last 5 years based on HPI</td><td>0.1812</td>\n        </tr>\n<tr><td>returns_10</td><td>number</td><td>Home price appreciation for the last 10 years based on HPI</td><td>0.3197</td>\n        </tr>\n<tr><td>returns_20</td><td>number</td><td>Home price appreciation for the last 20 years based on HPI</td><td>0.5123</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical maximum percentage 12-month loss in HPI</td><td>-0.0792</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's HPI will be lower 12 months from now than the current HPI</td><td>0.158</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","details"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"7433fc9a-f858-42c5-a5b0-662fe5d3c22d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Hayward, CA\",\n        \"cagr_1\": 0.0432,\n        \"cagr_5\": 0.0319,\n        \"cagr_10\": 0.0256,\n        \"cagr_20\": 0.0198,\n        \"returns_1\": 0.0376,\n        \"returns_5\": 0.1812,\n        \"returns_10\": 0.3197,\n        \"returns_20\": 0.5123,\n        \"max_12mo_loss\": -0.0792,\n        \"risk_12mo_loss\": 0.158\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Hayward, CA\",\n        \"cagr_1\": 0.0432,\n        \"cagr_5\": 0.0319,\n        \"cagr_10\": 0.0256,\n        \"cagr_20\": 0.0198,\n        \"returns_1\": 0.0376,\n        \"returns_5\": 0.1812,\n        \"returns_10\": 0.3197,\n        \"returns_20\": 0.5123,\n        \"max_12mo_loss\": -0.0792,\n        \"risk_12mo_loss\": 0.158\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"49af0a0a-2fc2-4583-bb75-d23d42fc5c4d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/details"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"dde978c0-bb61-4250-8295-88ecf9126bc5","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/details"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c80d20a4-4a5e-4e61-a11f-54aad8198a29","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/details"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7112e492-4d1f-4958-a9c0-db86375a1ad3"},{"name":"Returns and Risk Information From Address","id":"0b0cf484-3c48-4eec-a6ec-3d7888bc0082","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/msa_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Review HouseCanary's proprietary historical price return metrics for a MSA, including 1-year and 10-year compound annual growth rates, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n<tr><td>msa_name</td><td>string</td><td>Name of the msa</td><td>San Francisco-Oakland-Hayward, CA</td>\n        </tr>\n<tr><td>cagr_1</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR)</td><td>0.0432</td>\n        </tr>\n<tr><td>cagr_5</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR)</td><td>0.0319</td>\n        </tr>\n<tr><td>cagr_10</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR)</td><td>0.0256</td>\n        </tr>\n<tr><td>cagr_20</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR)</td><td>0.0198</td>\n        </tr>\n<tr><td>returns_1</td><td>number</td><td>Home price appreciation for the last year based on HPI</td><td>0.0376</td>\n        </tr>\n<tr><td>returns_5</td><td>number</td><td>Home price appreciation for the last 5 years based on HPI</td><td>0.1812</td>\n        </tr>\n<tr><td>returns_10</td><td>number</td><td>Home price appreciation for the last 10 years based on HPI</td><td>0.3197</td>\n        </tr>\n<tr><td>returns_20</td><td>number</td><td>Home price appreciation for the last 20 years based on HPI</td><td>0.5123</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical maximum percentage 12-month loss in HPI</td><td>-0.0792</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's HPI will be lower 12 months from now than the current HPI</td><td>0.158</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_details"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"8b3b07bc-c981-4ce6-a1ff-5976be379f3c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","msa_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Hayward, CA\",\n        \"cagr_1\": 0.0432,\n        \"cagr_5\": 0.0319,\n        \"cagr_10\": 0.0256,\n        \"cagr_20\": 0.0198,\n        \"returns_1\": 0.0376,\n        \"returns_5\": 0.1812,\n        \"returns_10\": 0.3197,\n        \"returns_20\": 0.5123,\n        \"max_12mo_loss\": -0.0792,\n        \"risk_12mo_loss\": 0.158\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Hayward, CA\",\n        \"cagr_1\": 0.0432,\n        \"cagr_5\": 0.0319,\n        \"cagr_10\": 0.0256,\n        \"cagr_20\": 0.0198,\n        \"returns_1\": 0.0376,\n        \"returns_5\": 0.1812,\n        \"returns_10\": 0.3197,\n        \"returns_20\": 0.5123,\n        \"max_12mo_loss\": -0.0792,\n        \"risk_12mo_loss\": 0.158\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"8cea6690-af04-452a-bc50-29b671d2f76d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","msa_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"73aa8007-ff2f-40ba-8876-43c15846ebb0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","msa_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"cbb44398-55fa-4729-9a39-e56199c5b015","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_details?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","msa_details"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0b0cf484-3c48-4eec-a6ec-3d7888bc0082"},{"name":"Returns and Risk Information From Address (Batch)","id":"9fd76c07-4592-44b4-ba66-9661b4cdd679","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_details","description":"<p>Review HouseCanary's proprietary historical price return metrics for a MSA, including 1-year and 10-year compound annual growth rates, based on the HouseCanary home price index (HPI). </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n<tr><td>msa_name</td><td>string</td><td>Name of the msa</td><td>San Francisco-Oakland-Hayward, CA</td>\n        </tr>\n<tr><td>cagr_1</td><td>number</td><td>Historical 1-year compound annual growth rate (CAGR)</td><td>0.0432</td>\n        </tr>\n<tr><td>cagr_5</td><td>number</td><td>Historical 5-year compound annual growth rate (CAGR)</td><td>0.0319</td>\n        </tr>\n<tr><td>cagr_10</td><td>number</td><td>Historical 10-year compound annual growth rate (CAGR)</td><td>0.0256</td>\n        </tr>\n<tr><td>cagr_20</td><td>number</td><td>Historical 20-year compound annual growth rate (CAGR)</td><td>0.0198</td>\n        </tr>\n<tr><td>returns_1</td><td>number</td><td>Home price appreciation for the last year based on HPI</td><td>0.0376</td>\n        </tr>\n<tr><td>returns_5</td><td>number</td><td>Home price appreciation for the last 5 years based on HPI</td><td>0.1812</td>\n        </tr>\n<tr><td>returns_10</td><td>number</td><td>Home price appreciation for the last 10 years based on HPI</td><td>0.3197</td>\n        </tr>\n<tr><td>returns_20</td><td>number</td><td>Home price appreciation for the last 20 years based on HPI</td><td>0.5123</td>\n        </tr>\n<tr><td>max_12mo_loss</td><td>number</td><td>Historical maximum percentage 12-month loss in HPI</td><td>-0.0792</td>\n        </tr>\n<tr><td>risk_12mo_loss</td><td>number</td><td>Probability that this market's HPI will be lower 12 months from now than the current HPI</td><td>0.158</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_details"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"4dd23926-0a68-4c68-ad2b-aef83720bd1f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Hayward, CA\",\n        \"cagr_1\": 0.0432,\n        \"cagr_5\": 0.0319,\n        \"cagr_10\": 0.0256,\n        \"cagr_20\": 0.0198,\n        \"returns_1\": 0.0376,\n        \"returns_5\": 0.1812,\n        \"returns_10\": 0.3197,\n        \"returns_20\": 0.5123,\n        \"max_12mo_loss\": -0.0792,\n        \"risk_12mo_loss\": 0.158\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_details\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"msa\": \"38060\",\n        \"msa_name\": \"San Francisco-Oakland-Hayward, CA\",\n        \"cagr_1\": 0.0432,\n        \"cagr_5\": 0.0319,\n        \"cagr_10\": 0.0256,\n        \"cagr_20\": 0.0198,\n        \"returns_1\": 0.0376,\n        \"returns_5\": 0.1812,\n        \"returns_10\": 0.3197,\n        \"returns_20\": 0.5123,\n        \"max_12mo_loss\": -0.0792,\n        \"risk_12mo_loss\": 0.158\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"082eddc9-0566-4892-811c-d435c0c5b2ac","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_details"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0dc37d5a-4920-4b1d-b6c7-81958a3dd3d7","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_details"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"90ea0015-35bb-4ddd-b1a4-57f2b38ffebe","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_details"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9fd76c07-4592-44b4-ba66-9661b4cdd679"},{"name":"Gross Rental Yield","id":"390ded60-84c5-433f-b110-2d2a450bac1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/hcri?msa=38060","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a MSA, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"}],"variable":[]}},"response":[{"id":"8b969a1f-3c86-4b30-a9e1-5a0e1a04eb8f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hcri?msa=38060","host":["https://api.housecanary.com"],"path":["v2","msa","hcri"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"2403eb40-b9cd-4fcc-acb8-b6791682d45a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hcri?msa=38060","host":["https://api.housecanary.com"],"path":["v2","msa","hcri"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e08ccff8-afe1-4ea2-af1a-0393698d8e5f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hcri?msa=38060","host":["https://api.housecanary.com"],"path":["v2","msa","hcri"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"58cc895d-577f-4a19-89a3-1ff857a963a4","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hcri?msa=38060","host":["https://api.housecanary.com"],"path":["v2","msa","hcri"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"390ded60-84c5-433f-b110-2d2a450bac1e"},{"name":"Gross Rental Yield (Batch)","id":"a287ed81-f82a-4d2d-beda-4a5ed627b107","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/hcri","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a MSA, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","hcri"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"a291305e-d913-40f6-ad9e-70498e6c9140","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/hcri"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"26b5cf1e-75fc-4892-82f6-916901874aef","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/hcri"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"27295702-1e6f-454d-a557-3b8fa0fbffeb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/hcri"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1e25dc28-ddbf-49b0-b332-d9f4170163c0","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/hcri"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a287ed81-f82a-4d2d-beda-4a5ed627b107"},{"name":"Gross Rental Yield From Address","id":"1c6edc3e-b533-40aa-bf2e-c2d1c7d1c23a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/msa_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a MSA, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"d1f5cf7c-0877-4b26-bccb-e42a09975b5a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","msa_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"eb66cc69-424e-4602-b758-12c5a1e3a7ac","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","msa_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"b5b1fec4-ae32-484e-b70c-6ea9c1c58ae5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","msa_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9eecd5eb-5563-4104-b0e0-17fd1318e9db","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","msa_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1c6edc3e-b533-40aa-bf2e-c2d1c7d1c23a"},{"name":"Gross Rental Yield From Address (Batch)","id":"e03af69e-8809-4836-ba40-02e4ee298793","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_hcri","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a MSA, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_hcri"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"30bf841f-6fb6-4fb2-bc8a-bbe4038454ff","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_hcri"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"a6b11d32-c847-4193-a7fd-7bfff74cad49","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_hcri"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"b35a061c-785c-4ae7-9483-819d684ded46","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_hcri"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"beeab95e-b23b-43b4-8985-3f238c090fe9","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_hcri"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e03af69e-8809-4836-ba40-02e4ee298793"},{"name":"Home Price Index Forecast (Time Series)","id":"6fc0935b-c147-4e92-acef-dd5c3dcab113","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a MSA, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>225.2</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.6</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.35</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"9d15306c-5df4-439f-8b4a-f2d76f68ff91","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"cf9e9fa5-d457-4058-b597-b12345941649","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a4a99d3f-6b35-44d9-bdc4-04253b7a24f8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"beea449c-767f-4a70-a687-41fba49beb3e","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"6fc0935b-c147-4e92-acef-dd5c3dcab113"},{"name":"Home Price Index Forecast (Time Series) (Batch)","id":"a59d3e3e-9af2-4c93-8809-754539a22d88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a MSA, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>225.2</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.6</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.35</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"96740ac8-feee-4ed2-87f5-766474335abd","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"d58bd985-8a6d-459b-8f1a-8d3711b72cb8","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2077d2cd-ea46-436e-a718-1ed6c7988991","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6f67b297-f237-4631-9d2f-e52ac59a7b27","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a59d3e3e-9af2-4c93-8809-754539a22d88"},{"name":"Home Price Index Forecast (Time Series) From Address","id":"80623800-7b26-4e0f-ac9e-2a3214f12250","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a MSA, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>225.2</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.6</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.35</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"74ed4efe-b451-49d4-bbb1-1e13f1283d7a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"410c616b-06db-445f-8068-a423082749ec","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4cbc9f06-2d08-4d61-9ffa-c0488373aace","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"43ce32da-ebc9-4204-a69a-822c874baa9b","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"80623800-7b26-4e0f-ac9e-2a3214f12250"},{"name":"Home Price Index Forecast (Time Series) From Address (Batch)","id":"d85a4773-96e5-4524-9e31-2ceca51b405a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a MSA, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>225.2</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.6</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.35</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"ce0c2b61-366c-49b8-b532-c020656b3d28","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9f23e883-d82b-4834-9ca5-cdbdd32ba8b9","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"9879fd84-88de-432a-b75b-dde2d32e5bfe","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c7d7e1aa-91c1-416a-8d51-1948cfe94da8","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d85a4773-96e5-4524-9e31-2ceca51b405a"},{"name":"Home Price Index Historical (Time Series)","id":"1c534027-39af-469c-8f54-ab45c96cfa04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/hpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a MSA, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>225.2</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.6</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.35</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"9548b757-b2e4-4feb-ac46-a45d0de09438","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"83b80643-a3ff-4bce-8e88-aac8a31fc1fe","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c70fb2ef-60c8-4d56-b630-13a4bcb633db","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2bce4ca8-f9e7-4026-9a8b-611f5e9f8463","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1c534027-39af-469c-8f54-ab45c96cfa04"},{"name":"Home Price Index Historical (Time Series) (Batch)","id":"dff0b53c-6940-4dd0-aef0-08eb9e2e4b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a MSA, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>225.2</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.6</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.35</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"8b40d8e5-696f-42b7-b06d-57cc02fc36f7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"be51780a-1d58-4f94-a06a-ce7474223b75","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"751a41e8-743e-4e8c-b29a-18eb1e32824c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"629d8c19-83da-40f8-b9f2-d874dbd71205","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"dff0b53c-6940-4dd0-aef0-08eb9e2e4b87"},{"name":"Home Price Index Historical (Time Series) From Address","id":"9a89eded-f0d5-45b2-bb2d-dce7fb7d5b1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a MSA, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>225.2</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.6</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.35</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"cd5c1a20-7923-4586-8260-52ff7791709f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"e1fe01dc-af9a-4b76-9f0d-77ac34d1dfaa","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c0377e5e-0b24-4116-bd6c-a75b1d79a0e5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a5e5635d-6a51-4567-a6c9-22565ba6f9f8","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9a89eded-f0d5-45b2-bb2d-dce7fb7d5b1a"},{"name":"Home Price Index Historical (Time Series) From Address (Batch)","id":"766d3e4a-efb7-49bf-9e76-cdba2e5a4484","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a MSA, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>235.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>225.2</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210.6</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>1.35</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-07-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"dad903c6-7228-4ef2-901f-2bba62bdf6fe","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          },\n          {\n            \"hpi_value\": 235.8,\n            \"hpi_real\": 225.2,\n            \"hpi_trend\": 210.6,\n            \"hpi_distance\": 1.35,\n            \"month\": \"2023-07-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"ee9a314a-9d2d-4a2a-898f-2e81d811211e","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c083410d-ce1a-4c4e-b16c-a8f9bc87085d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4c964f74-935a-414d-885f-e13423116209","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"766d3e4a-efb7-49bf-9e76-cdba2e5a4484"},{"name":"Rental Price Index Forecast (Time Series)","id":"ee86e832-e815-4830-8a36-b2bdcbeeb47c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a MSA, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"95f885e7-f3e2-4a47-b3d0-3f45f4227fde","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 5004.26619772178,\n            \"month\": \"1955-07-28\"\n          },\n          {\n            \"rpi_value\": 7751.884238932241,\n            \"month\": \"1970-11-19\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1150.730467690264,\n            \"month\": \"1950-06-06\"\n          },\n          {\n            \"rpi_value\": 1280.7743152835417,\n            \"month\": \"1999-03-16\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"d5cbe6b1-9b35-4278-a846-0b7a44f16708","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0699fd93-6897-4a49-b47b-3a53593210ac","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"596b42a6-ef35-4d52-8834-9ca47dced574","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_forecast"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"ee86e832-e815-4830-8a36-b2bdcbeeb47c"},{"name":"Rental Price Index Forecast (Time Series) (Batch)","id":"a7d637f6-668c-476f-9633-22488f28cfe4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a MSA, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"473b4b72-936d-4548-a9db-0439da329353","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 5004.26619772178,\n            \"month\": \"1955-07-28\"\n          },\n          {\n            \"rpi_value\": 7751.884238932241,\n            \"month\": \"1970-11-19\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1150.730467690264,\n            \"month\": \"1950-06-06\"\n          },\n          {\n            \"rpi_value\": 1280.7743152835417,\n            \"month\": \"1999-03-16\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"809288b5-3487-4237-84c2-4ad673afeb2f","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d6157d14-5232-478c-a072-05e808c981c9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"85932d1f-6f6d-46e3-bd48-8f7d9e353976","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a7d637f6-668c-476f-9633-22488f28cfe4"},{"name":"Rental Price Index Forecast (Time Series) From Address","id":"86d5872f-b3fa-4f52-8aef-74ebbef15806","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a MSA, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"0d4267fd-8c17-48bc-a4cf-9cb37f6e8222","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 5368.764332255171,\n            \"month\": \"1997-01-21\"\n          },\n          {\n            \"rpi_value\": 2088.4644559636345,\n            \"month\": \"1996-07-03\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2735.5415205546074,\n            \"month\": \"1947-01-11\"\n          },\n          {\n            \"rpi_value\": 4657.172051380656,\n            \"month\": \"1997-10-17\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"4b8689f1-eb36-43ee-b752-ed9269d71781","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c42e0d01-21a4-4a6a-b980-b76f5a7c821b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"1a6be8d1-a2d7-416a-892f-ecc294591d45","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"86d5872f-b3fa-4f52-8aef-74ebbef15806"},{"name":"Rental Price Index Forecast (Time Series) From Address (Batch)","id":"d9d853c2-c237-4df7-a564-0c2ed3ce2c14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a MSA, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"565a649e-1093-4d59-acf9-751bdf48a3a1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 5368.764332255171,\n            \"month\": \"1997-01-21\"\n          },\n          {\n            \"rpi_value\": 2088.4644559636345,\n            \"month\": \"1996-07-03\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2735.5415205546074,\n            \"month\": \"1947-01-11\"\n          },\n          {\n            \"rpi_value\": 4657.172051380656,\n            \"month\": \"1997-10-17\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"2e586f94-7f74-4b46-b967-a1f4c9cab4c5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"6ac64dd3-e462-4bc0-acb5-818d9f833173","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"88300370-aa9d-4acd-a224-233e0550ebb1","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d9d853c2-c237-4df7-a564-0c2ed3ce2c14"},{"name":"Rental Price Index Historical (Time Series)","id":"07feea32-16d5-4993-8e94-7d84f80694c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/rpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a MSA, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"3960d99a-2a83-4e7a-9c44-8271c379c8ca","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1602.1306323809758,\n            \"month\": \"2003-04-29\"\n          },\n          {\n            \"rpi_value\": 4516.7073676355685,\n            \"month\": \"2021-03-26\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 3906.014546486176,\n            \"month\": \"1970-05-12\"\n          },\n          {\n            \"rpi_value\": 2294.301097332199,\n            \"month\": \"2009-09-07\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"5be238ed-8519-4433-b1d4-307f33311eb7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4adce754-91a6-4d6a-af8d-e4bdd2a51f8d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"18a6cad7-e0a0-45fa-b1bf-60f3e073048b","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_historical?msa=38060&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_historical"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"07feea32-16d5-4993-8e94-7d84f80694c1"},{"name":"Rental Price Index Historical (Time Series) (Batch)","id":"1976eeea-48ac-4a4a-933b-709711ae017f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/msa/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a MSA, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"b58034de-ec3f-4387-87da-f46e9ee94c33","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1602.1306323809758,\n            \"month\": \"2003-04-29\"\n          },\n          {\n            \"rpi_value\": 4516.7073676355685,\n            \"month\": \"2021-03-26\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  },\n  {\n    \"msa/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 3906.014546486176,\n            \"month\": \"1970-05-12\"\n          },\n          {\n            \"rpi_value\": 2294.301097332199,\n            \"month\": \"2009-09-07\"\n          }\n        ]\n      }\n    },\n    \"msa_info\": {\n      \"msa\": \"41860\",\n      \"msa_name\": \"San Francisco-Oakland-Hayward, CA\"\n    }\n  }\n]"},{"id":"6942e464-68c2-44e1-83e6-789ba090f44a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a657ce81-7539-4a71-b0e6-8538c090739a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"037e1a7a-6d02-49f7-a3ec-b9b28aef23f1","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"msa\": \"38060\"\n  },\n  {\n    \"msa\": \"38060\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/msa/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","msa","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1976eeea-48ac-4a4a-933b-709711ae017f"},{"name":"Rental Price Index Historical (Time Series) From Address","id":"6a6b11ea-d6da-4caf-8bdd-e1ee3320ebdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a MSA, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"672288e5-a95f-477e-928f-2eedbff9bfd2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 5199.774843908515,\n            \"month\": \"1971-01-30\"\n          },\n          {\n            \"rpi_value\": 7724.912788194387,\n            \"month\": \"2017-01-03\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2803.240315220079,\n            \"month\": \"1965-08-09\"\n          },\n          {\n            \"rpi_value\": 1719.9703130620026,\n            \"month\": \"2000-12-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"0311a77c-679d-4612-aeaf-6d7ba3afc583","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e29b01a8-2b1e-4025-81cb-b9e47c466319","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2c096710-a4b4-446b-aad7-a7d3285e69d4","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"6a6b11ea-d6da-4caf-8bdd-e1ee3320ebdc"},{"name":"Rental Price Index Historical (Time Series) From Address (Batch)","id":"504c74c4-f5b0-4d53-841e-642e42b27175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a MSA, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","msa_rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"234d1194-f90a-4c71-929a-2dc5324c7dae","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/msa_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 5199.774843908515,\n            \"month\": \"1971-01-30\"\n          },\n          {\n            \"rpi_value\": 7724.912788194387,\n            \"month\": \"2017-01-03\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/msa_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 2803.240315220079,\n            \"month\": \"1965-08-09\"\n          },\n          {\n            \"rpi_value\": 1719.9703130620026,\n            \"month\": \"2000-12-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"77eab503-84ec-487c-b486-648fe2999abd","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"dbb2038a-20b5-40b7-93d7-16e7852c5032","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4f10f534-0eef-42d8-9643-fa7393c43504","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/msa_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","msa_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"504c74c4-f5b0-4d53-841e-642e42b27175"}],"id":"843c581d-192d-435c-8d9f-40ce0c2ad6b3","_postman_id":"843c581d-192d-435c-8d9f-40ce0c2ad6b3","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"State Level","item":[{"name":"Affordability Forecast","id":"60a04cef-2a0e-4954-8354-5321e460bc34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/affordability_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for States with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.283</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.21</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"638f2433-5cb5-4591-8567-00f8e84cf7d5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"106437dc-c7eb-4a7e-9bc3-22c4072e36a0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2b08bfc6-2f04-40f2-b125-8365403f214e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a9b3b660-8669-4e1d-a75b-62ab3470018e","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"60a04cef-2a0e-4954-8354-5321e460bc34"},{"name":"Affordability Forecast (Batch)","id":"1397191d-3049-40ed-b9e4-d9a0d027d34f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for States with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.283</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.21</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"006546ae-c4b0-4b05-a25b-05e9e15f0a6d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"1aeac9e3-a625-4e0f-8f36-1165112b9471","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a9122194-a930-4e0d-99d8-cd6aab11f0cb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f92c5523-a55b-461e-8723-3f4c323e0445","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1397191d-3049-40ed-b9e4-d9a0d027d34f"},{"name":"Affordability Forecast From Address","id":"f2d628fe-11e1-4ace-b509-f1555e9d14a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for States with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.283</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.21</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"a9e2c58f-e0d6-418a-b69a-417ecf76f3be","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"6d7c931c-5859-4862-8e47-60dcab89b861","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"b90e7f4b-3577-4494-bfc7-3ab951d986bd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"09f0f85b-db31-4036-a943-f46086c55498","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f2d628fe-11e1-4ace-b509-f1555e9d14a2"},{"name":"Affordability Forecast From Address (Batch)","id":"503c30d8-a8df-4ffd-81dd-076a7d26177a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasts of monthly affordability values for States with coverage three years into the future, enabling informed decisions about property investments and market trends. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.283</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.21</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_affordability_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"18001fea-8680-42dd-a65a-8493d2137756","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_affordability_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"98ad65a4-184f-4818-8f2e-28af28105f82","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"48bdafda-c5a2-491c-96fa-eb0414641991","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9c2ac5e7-186e-4995-8e3d-065eca89fe04","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"503c30d8-a8df-4ffd-81dd-076a7d26177a"},{"name":"Affordability Historical","id":"cbc4f326-20f0-464d-8372-94ec93157a95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/affordability_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for States with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.283</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.21</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"4205f654-c25e-49c0-ad4e-8c8d82874fd4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"179f9d76-70c3-4c94-9fa3-5bbb742ab5b0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"56620578-3fd6-4c7a-8a4a-95baef616bd5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f6b79568-ed7b-4e02-bb9b-7b58625fc6cb","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"cbc4f326-20f0-464d-8372-94ec93157a95"},{"name":"Affordability Historical (Batch)","id":"25ec8e41-1bbe-4566-abe1-b4bea1134845","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for States with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.283</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.21</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"f098509f-a2a6-46ac-812f-9ce1511c87b6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"870f5331-1177-45ae-bc34-0f6e7aeda4eb","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"824f6226-2b9c-441f-bb8e-510418770ca8","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"84142526-e025-45df-951f-5b71362b2e31","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"25ec8e41-1bbe-4566-abe1-b4bea1134845"},{"name":"Affordability Historical From Address","id":"02633762-cc74-42c9-b37c-b27174c10d00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for States with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.283</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.21</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"f6194896-9c97-4c49-839c-fefedc3f01b5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"08b3308a-64ee-47f8-a6f8-c6122bc67877","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"6c1f675d-5295-49ad-a1de-fedc82532343","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9397e781-db86-4419-beeb-94b653fad09d","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"02633762-cc74-42c9-b37c-b27174c10d00"},{"name":"Affordability Historical From Address (Batch)","id":"e72f760d-9bb9-43d2-83d7-dc74e5eb462e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Historical time series data of monthly affordability values for States with coverage dating back to 1975, offering valuable insights into past market trends and performance. Higher values imply lower affordability. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Basic </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecast affordability values</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the affordability value</td><td>2023-08-01</td>\n        </tr>\n<tr><td>time_series[].afford_pmt</td><td>number</td><td>Fraction of median household income required to make the median home payment on a 30 year fixed rate mortgage with 20% down</td><td>0.283</td>\n        </tr>\n<tr><td>time_series[].afford_detrended</td><td>number</td><td>The normalized distance of afford_pmt from a long term linear trend. Units are in standard deviations from the mean.</td><td>0.21</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_affordability_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"505bd901-8d64-48a4-9c65-cffa524a33bc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_affordability_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          },\n          {\n            \"month\": \"2023-08-01\",\n            \"afford_pmt\": 0.283,\n            \"afford_detrended\": 0.21\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9827a642-9259-419e-b4ec-119440440205","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"81f51447-b5a0-4116-ba50-6aaa551410fd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4cafd525-f118-4407-b7d5-6385ecdad83c","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_affordability_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_affordability_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e72f760d-9bb9-43d2-83d7-dc74e5eb462e"},{"name":"Gross Rental Yield","id":"12b2fe53-f172-46ef-a02e-341f03c37ef1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/hcri?state=CA","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a State, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"}],"variable":[]}},"response":[{"id":"a9780982-af3e-4520-adc4-d7d5cea61e35","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hcri?state=CA","host":["https://api.housecanary.com"],"path":["v2","state","hcri"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"72677650-ac5f-44ac-aed1-426297cbe897","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hcri?state=CA","host":["https://api.housecanary.com"],"path":["v2","state","hcri"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"770c14ab-77f2-43c5-a675-ce2036dd2d17","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hcri?state=CA","host":["https://api.housecanary.com"],"path":["v2","state","hcri"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"74d313b1-8fb7-48b6-9041-f4d306d9e5fd","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hcri?state=CA","host":["https://api.housecanary.com"],"path":["v2","state","hcri"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"12b2fe53-f172-46ef-a02e-341f03c37ef1"},{"name":"Gross Rental Yield (Batch)","id":"33bc5162-bf20-4d8c-9f0a-345ace5eb1f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/hcri","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a State, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","hcri"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"bd09c2b7-6bce-431e-8828-648de02b1c86","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/hcri"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"e7550682-b183-41aa-82a4-91d7999edf6a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/hcri"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"dacf71cd-a43b-408d-9a1e-ef722332dfe2","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/hcri"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"5e82503d-c1b1-4508-901c-99db86dd7b69","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/hcri"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"33bc5162-bf20-4d8c-9f0a-345ace5eb1f1"},{"name":"Gross Rental Yield From Address","id":"5decc695-5aea-46c2-b4a8-20579682484e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/state_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a State, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_hcri"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"}],"variable":[]}},"response":[{"id":"c6ab65ee-9b15-42e2-87f5-f8c08955a148","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","state_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"7e9fc072-727d-4242-a0ce-93669c667f94","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","state_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3098cb18-5350-4fd0-9a43-e4b254664305","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","state_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"020b624f-259b-496d-a97e-db5fb1de50e3","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hcri?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105","host":["https://api.housecanary.com"],"path":["v2","property","state_hcri"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5decc695-5aea-46c2-b4a8-20579682484e"},{"name":"Gross Rental Yield From Address (Batch)","id":"a4618d8b-a074-43de-96c2-b379fda6f070","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_hcri","description":"<p>Calculate the Canary Rental Index (CRI) to measure aggregated gross rental yield across a State, enabling assessment of rental market performance within a specific block.</p>\n<p>Gross rental yield is calculated per-property as the ( monthly rental AVM * 12 ) / property value AVM.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>gross_yield_count</td><td>integer</td><td>Count of the properties that contributed to the index</td><td>250</td>\n        </tr>\n<tr><td>gross_yield_median</td><td>number</td><td>Median gross yield value</td><td>8.2</td>\n        </tr>\n<tr><td>gross_yield_average</td><td>number</td><td>Average gross yield value</td><td>7.9</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_hcri"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"d745f16f-e918-4e7f-a46c-94045d9b2883","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_hcri"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_hcri\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"gross_yield_count\": 250,\n        \"gross_yield_median\": 8.2,\n        \"gross_yield_average\": 7.9\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b924b9ba-c6bc-4d89-a172-52fbd7ff580b","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_hcri"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"7fb3b63f-a5d9-48e0-a3a4-73537b6ecd74","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_hcri"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"63a62055-fa22-460e-973c-fcca13c7a1ef","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_hcri"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a4618d8b-a074-43de-96c2-b379fda6f070"},{"name":"Home Price Index Forecast (Time Series)","id":"2d23c5e0-db56-45aa-8586-a4af22c07050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/hpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a State, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>215.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>198.6</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.75</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"2e25bc1d-a28a-4c3e-b6d7-3eca060ec3da","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"c1d82e61-8d2f-482b-b65c-5d58c060c6be","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"412b7124-5588-4cf8-9f2b-f8cd35c7f6a4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a1928176-18c0-44a3-9827-95bc4c8b8c5c","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2d23c5e0-db56-45aa-8586-a4af22c07050"},{"name":"Home Price Index Forecast (Time Series) (Batch)","id":"9b748e39-ecdc-4e4b-93e8-5fb2873fa655","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a State, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>215.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>198.6</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.75</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"aed26187-d2d1-4aef-9fe7-063be15b7cca","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"3b9d4df5-6b55-402b-99c7-a3c4d3033c95","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"dc998580-6cce-49fe-adc4-1f7dec1422bd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"76e94582-a7a0-4960-b41e-06e204f11652","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9b748e39-ecdc-4e4b-93e8-5fb2873fa655"},{"name":"Home Price Index Forecast (Time Series) From Address","id":"c1f3570b-e8f6-44e4-9054-3b3ea861f05c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a State, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>215.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>198.6</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.75</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"66e9641f-7572-429c-8a0d-7b29c5ed624c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"bcb095f7-753c-4bdd-acf2-b2ed705f858a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"20981965-c5ef-42b2-8585-2c0af9f5dc8e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b8644218-8f6b-4be7-bc9e-0df56b70b3c6","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c1f3570b-e8f6-44e4-9054-3b3ea861f05c"},{"name":"Home Price Index Forecast (Time Series) From Address (Batch)","id":"8004853c-cce6-4d98-8d7f-c6c0659410ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access forecasted time series data of monthly home price index (HPI) values for a State, including data three years in the future, for informed property investment planning. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>215.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>198.6</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.75</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_hpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"d2c0fe7a-e67a-4976-83e0-59e024dba0ce","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_hpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"7c261a81-eafc-4a72-a6a5-f8e25de2f143","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f2115a40-ed38-442a-ac94-d67a5ff55afb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"620a65d2-0ecb-442d-b794-e96d97c37e3e","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"8004853c-cce6-4d98-8d7f-c6c0659410ef"},{"name":"Home Price Index Historical","id":"e2f38b5b-f7ce-4711-8fb6-05778c2dba87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/hpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a State, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>215.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>198.6</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.75</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"7cdfa025-823a-4782-8ebb-a884264b8b6f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"d94ac3ff-0e5f-47f6-8965-888c880a95b0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1c14fc05-cd3c-424c-98d7-098f08e50479","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c3dbeba6-3c47-4b4d-9dc9-9d378313ab29","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e2f38b5b-f7ce-4711-8fb6-05778c2dba87"},{"name":"Home Price Index Historical (Batch)","id":"42791b41-7c79-46fd-9e8d-fdc1e9d65418","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a State, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>215.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>198.6</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.75</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"c80d2fed-b328-48df-8c17-ebac43496be9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"f6cd2ad3-85fa-4903-a07d-09fc3be40723","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2ccb201e-9559-4cba-a61d-a557b297d453","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"39a6a5a9-961e-454a-8543-b8fe9963742c","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"42791b41-7c79-46fd-9e8d-fdc1e9d65418"},{"name":"Home Price Index Historical From Address","id":"fbaef4b6-665d-451e-9182-dd037e1880c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a State, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>215.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>198.6</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.75</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"d2ac7ef8-8b0d-4871-966d-6c597d766440","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"9b1fa074-bfef-4089-8318-e1eb5617b181","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"967f2097-dc00-4930-8e44-14337419d993","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6244804a-ae3f-46e1-9f6d-74ea2170db46","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"fbaef4b6-665d-451e-9182-dd037e1880c9"},{"name":"Home Price Index Historical From Address (Batch)","id":"811802db-beed-490a-a103-29de7ca6f7cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly home price index (HPI) values for a State, with coverage dating back to 1975, to better understand past market performance and trends. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of historical HPI values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].hpi_value</td><td>number</td><td>HPI value</td><td>215.8</td>\n        </tr>\n<tr><td>time_series[].hpi_real</td><td>number</td><td>Inflation-adjusted HPI value</td><td>198.6</td>\n        </tr>\n<tr><td>time_series[].hpi_trend</td><td>number</td><td>Long-term linear trend in HPI value</td><td>210</td>\n        </tr>\n<tr><td>time_series[].hpi_distance</td><td>number</td><td>Normalized distance of HPI value from a long term linear trend. Units are in standard deviations from the mean.</td><td>-0.75</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the HPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_hpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"cd6c7a44-4f88-477b-bee0-798ecd986046","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_hpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"hpi_value\": 215.8,\n            \"hpi_real\": 198.6,\n            \"hpi_trend\": 210,\n            \"hpi_distance\": -0.75,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"44f17fda-8fbc-41a0-845f-d2d1c16f0cdb","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1aee91f2-73d6-4c06-bc48-d60578a2614c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4dc4c337-c395-4e59-af71-9638c628cc39","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_hpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_hpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"811802db-beed-490a-a103-29de7ca6f7cb"},{"name":"Rent Price Index Forecast","id":"1074ebca-b369-42cd-b825-129aa10a30c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/rpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a State, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecasted values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>1.25</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"8bd31598-d609-4dc3-8429-f9e5afe070de","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"3d2851cc-3c70-40ce-bbeb-0284b130ee4e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"01c70e54-5291-4410-888b-b3bf6d33e144","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"19296690-14f5-4988-847e-980b6af5b966","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_forecast?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_forecast"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1074ebca-b369-42cd-b825-129aa10a30c1"},{"name":"Rent Price Index Forecast (Batch)","id":"b2e9fd03-b44c-4b4c-a3d1-9930ce0b9ef7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a State, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecasted values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>1.25</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"ef526ec8-21d5-4c8e-bf2a-868a6328b03b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"e35d74bb-c9a9-44fc-83cd-7ac614bc2a5a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"ac0b4a9a-396a-4a40-b4ff-58a5a97a9986","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"85f9324a-88ca-4b70-9f4f-b3fd535e871e","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"b2e9fd03-b44c-4b4c-a3d1-9930ce0b9ef7"},{"name":"Rent Price Index Forecast From Address","id":"701134cd-8b80-45e0-8c52-4bde6aaec77f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a State, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecasted values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>1.25</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"8f13b2c0-1f32-4f15-b273-4da10272fda7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"09d04603-09d2-42e8-a40a-c5fa14646bf6","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"e2f41d8d-c0f5-4138-9b7c-079a1d0cf205","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c1d3504b-b33b-4965-847a-09dde7322b6c","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_forecast"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"701134cd-8b80-45e0-8c52-4bde6aaec77f"},{"name":"Rent Price Index Forecast From Address (Batch)","id":"5d6c0d24-c9f6-45b0-9b06-64f4edc00185","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Access one-year forecast time series data of monthly rental price index (RPI) values for a State, supporting informed decisions about rental market trends and investment opportunities. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecasted values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>1.25</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_rpi_ts_forecast"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"7d04fdac-1840-4376-9b39-66af5cf40efb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_rpi_ts_forecast\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"56e1b528-5069-4c1b-8a50-13d0d9ca1513","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"16ae119b-2f1c-4299-83cd-870c84979c61","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"c64280e0-4609-4b63-a168-744b8be3ee70","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_forecast?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_forecast"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5d6c0d24-c9f6-45b0-9b06-64f4edc00185"},{"name":"Rent Price Index Historical","id":"9456592a-6912-45ad-81c5-cf30336a3e58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/rpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a State, providing valuable insights into past rental market trends and performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecasted values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>1.25</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"955e022d-2b65-4dc1-92a0-a381ee568203","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"32f6abe1-638c-40a2-bd45-4a91c7dc126a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"2ccc5f48-d20b-4567-bcfe-a6990e06861b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f05af2d8-4df7-4c37-99d8-94c550ccf399","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_historical?state=CA&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_historical"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9456592a-6912-45ad-81c5-cf30336a3e58"},{"name":"Rent Price Index Historical (Batch)","id":"82252786-cf7d-4c92-ac06-af028d06b387","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a State, providing valuable insights into past rental market trends and performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecasted values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>1.25</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"5578a91f-3d0f-4614-ba65-825221b2bf32","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"4c9fa59a-5c65-4f06-b955-f388c02561f0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"43d255be-85be-4145-9480-5ccc9c866c3c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"814ace31-f360-4820-9eb8-cedcd76923db","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","state","rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"82252786-cf7d-4c92-ac06-af028d06b387"},{"name":"Rent Price Index Historical From Address","id":"51ea02a1-896e-41e5-a5a2-a5fea5a7450d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a State, providing valuable insights into past rental market trends and performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        <td></td></tr>\n<tr><td>address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        <td></td></tr>\n<tr><td>unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        <td></td></tr>\n<tr><td>city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        <td></td></tr>\n<tr><td>state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        <td></td></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        <td></td></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecasted values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>1.25</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Unique readable string identifier for the property</p>\n","type":"text/plain"},"key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":{"content":"<p>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</p>\n","type":"text/plain"},"key":"address","value":"123 Main St"},{"description":{"content":"<p>Unit number for the property, if needed and not already specified in the address string</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>City in which the property is located</p>\n","type":"text/plain"},"key":"city","value":"San Francisco"},{"description":{"content":"<p>2-letter acronym of the US state in which the property is located</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>5-digit US zipcode in which the property is located</p>\n","type":"text/plain"},"key":"zipcode","value":"94105"},{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"ab4edf46-0735-4029-8702-440cc2d362ec","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"74c1a986-cd60-4922-93a0-8b64fd002513","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a95eff03-f000-4295-8655-9f54945fa2d7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f2c4509b-3a71-4792-9642-abb0b280babb","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?slug=123-Main-St-Apt-1-San-Francisco&address=123 Main St&unit=Apt 1&city=San Francisco&state=CA&zipcode=94105&order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_historical"],"query":[{"description":"Unique readable string identifier for the property","key":"slug","value":"123-Main-St-Apt-1-San-Francisco"},{"description":"Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)","key":"address","value":"123 Main St"},{"description":"Unit number for the property, if needed and not already specified in the address string","key":"unit","value":"Apt 1"},{"description":"City in which the property is located","key":"city","value":"San Francisco"},{"description":"2-letter acronym of the US state in which the property is located","key":"state","value":"CA"},{"description":"5-digit US zipcode in which the property is located","key":"zipcode","value":"94105"},{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"51ea02a1-896e-41e5-a5a2-a5fea5a7450d"},{"name":"Rent Price Index Historical From Address (Batch)","id":"ae83aea5-2ac7-40ee-8f7d-b34791387cb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","description":"<p>Review historical time series data of monthly rental price index (RPI) values for a State, providing valuable insights into past rental market trends and performance. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Premium </p>\n<p>Updated: Monthly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>order</td><td>string</td><td>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</td><td>asc</td>\n        <td>[asc, desc]</td></tr>\n<tr><td>limit</td><td>integer</td><td>Maximum integer number of result items to return. Defaults to null.</td><td>10</td>\n        <td></td></tr>\n<tr><td>start</td><td>string</td><td>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n<tr><td>end</td><td>string</td><td>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</td><td>2015-01-01</td>\n        <td></td></tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>Unique readable string identifier for the property</td><td>123-Main-St-Apt-1-San-Francisco</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Either a single URL-safe string (\"slug\") identifying the address, or just a building number, street name, and optionally unit number (if not a slug the payload must also include other identifiers)</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Unit number for the property, if needed and not already specified in the address string</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].city</td><td>string</td><td>City in which the property is located</td><td>San Francisco</td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter acronym of the US state in which the property is located</td><td>CA</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit US zipcode in which the property is located</td><td>94105</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>time_series</td><td>array</td><td>Set of forecasted values with the associated month</td><td></td>\n        </tr>\n<tr><td>time_series[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>time_series[].rpi_value</td><td>number</td><td>Forecast median rental value per square foot based on RPI.</td><td>1.25</td>\n        </tr>\n<tr><td>time_series[].month</td><td>string</td><td>Month of the RPI value in ISO format</td><td>2023-08-01</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","state_rpi_ts_historical"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>Chronological order to sort result items. One of [asc or desc]. Defaults to asc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Maximum integer number of result items to return. Defaults to null.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"start","value":"2015-01-01"},{"description":{"content":"<p>Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.</p>\n","type":"text/plain"},"key":"end","value":"2015-01-01"}],"variable":[]}},"response":[{"id":"2c0e97ff-d8c0-4726-9caf-6bb53f71788d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"property/state_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  },\n  {\n    \"property/state_rpi_ts_historical\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {\n        \"time_series\": [\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          },\n          {\n            \"rpi_value\": 1.25,\n            \"month\": \"2023-08-01\"\n          }\n        ]\n      }\n    },\n    \"address_info\": {\n      \"address_full\": \"123 Main St San Francisco CA 94132\",\n      \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n      \"address\": \"123 Main St\",\n      \"unit\": \"Apt 1\",\n      \"city\": \"San Francisco\",\n      \"state\": \"CA\",\n      \"zipcode\": \"94132\",\n      \"zipcode_plus4\": \"1234\",\n      \"block_id\": \"060750313013007\",\n      \"blockgroup_id\": \"060750201004\",\n      \"county_fips\": \"06075\",\n      \"metrodiv\": \"41860\",\n      \"msa\": \"41860\",\n      \"geo_precision\": \"rooftop\",\n      \"lat\": 37.789,\n      \"lng\": -122.401,\n      \"status\": {\n        \"match\": true,\n        \"details\": [\n          \"Address fully verified\",\n          \"Address fully verified\"\n        ],\n        \"requested_item\": {\n          \"zipcode\": \"94132\",\n          \"address\": \"123+Main+St\"\n        },\n        \"changes\": [\n          \"State added or changed\",\n          \"State added or changed\"\n        ],\n        \"errors\": [\n          \"string\",\n          \"string\"\n        ]\n      }\n    }\n  }\n]"},{"id":"b21ee4ed-7bc4-462d-86c1-5a6b9347272b","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"dcbb9259-2d1a-4e96-b83f-2aff932e58bd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"5766e090-8aa9-486f-892a-1c204a564c47","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  },\n  {\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-Main-St-Apt-1-San-Francisco\",\n    \"unit\": \"Apt 1\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipcode\": \"94105\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/property/state_rpi_ts_historical?order=asc&limit=10&start=2015-01-01&end=2015-01-01","host":["https://api.housecanary.com"],"path":["v2","property","state_rpi_ts_historical"],"query":[{"description":"Chronological order to sort result items. One of [asc or desc]. Defaults to asc.","key":"order","value":"asc"},{"description":"Maximum integer number of result items to return. Defaults to null.","key":"limit","value":"10"},{"description":"Beginning date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"start","value":"2015-01-01"},{"description":"Ending date limit for result items, based on month, in ISO 8601 format, i.e. 2015-01-01. Defaults to null.","key":"end","value":"2015-01-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"ae83aea5-2ac7-40ee-8f7d-b34791387cb2"},{"name":"Batch Multiple Endpoints","id":"403df58d-75d2-47cd-b39b-ed708f42524e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/component_mget?state=CA&components=state/hpi_ts_forecast,state/rpi_ts_forecast","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of State level endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n<tr><td>components</td><td>string</td><td>A comma separated list of state endpoint names. Spaces are not allowed.</td><td>state/hpi_ts_forecast,state/rpi_ts_forecast</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>A comma separated list of state endpoint names. Spaces are not allowed.</p>\n","type":"text/plain"},"key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}],"variable":[]}},"response":[{"id":"a370930c-981d-4094-a10e-03bc5a43efff","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/component_mget?state=CA&components=state/hpi_ts_forecast,state/rpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","state","component_mget"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"A comma separated list of state endpoint names. Spaces are not allowed.","key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"acf7d6cc-4159-4445-bacc-e8f71d5f962b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/component_mget?state=CA&components=state/hpi_ts_forecast,state/rpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","state","component_mget"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"A comma separated list of state endpoint names. Spaces are not allowed.","key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"c9cf53fa-27b7-4a3d-b830-0d170589e72d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/component_mget?state=CA&components=state/hpi_ts_forecast,state/rpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","state","component_mget"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"A comma separated list of state endpoint names. Spaces are not allowed.","key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"9275f63d-95f2-402e-9d0f-cf29458ebec1","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v2/state/component_mget?state=CA&components=state/hpi_ts_forecast,state/rpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","state","component_mget"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"A comma separated list of state endpoint names. Spaces are not allowed.","key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"403df58d-75d2-47cd-b39b-ed708f42524e"},{"name":"Batch Multiple Endpoints (Batch)","id":"f07b8f01-d2d7-449f-b8d8-326ef57fbbab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v2/state/component_mget?components=state/hpi_ts_forecast,state/rpi_ts_forecast","description":"<p>Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.</p>\n<p>Provide a comma separated list of State level endpoint names in the components query parameter to specify which endpoints you would like to include.   </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>components</td><td>string</td><td>A comma separated list of state endpoint names. Spaces are not allowed.</td><td>state/hpi_ts_forecast,state/rpi_ts_forecast</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","component_mget"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>A comma separated list of state endpoint names. Spaces are not allowed.</p>\n","type":"text/plain"},"key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}],"variable":[]}},"response":[{"id":"76941e4b-a368-4445-bb4b-ae030f25cb24","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/component_mget?components=state/hpi_ts_forecast,state/rpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","state","component_mget"],"query":[{"description":"A comma separated list of state endpoint names. Spaces are not allowed.","key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"state/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  },\n  {\n    \"state/component_mget\": {\n      \"api_code_description\": \"ok\",\n      \"api_code\": 0,\n      \"result\": {}\n    },\n    \"state_info\": {\n      \"state\": \"CA\"\n    }\n  }\n]"},{"id":"f36bbc14-e138-41e7-ac8f-05e1bbc5794b","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/component_mget?components=state/hpi_ts_forecast,state/rpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","state","component_mget"],"query":[{"description":"A comma separated list of state endpoint names. Spaces are not allowed.","key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a40c770f-d722-407a-b76e-a476ecc5f7fe","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/component_mget?components=state/hpi_ts_forecast,state/rpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","state","component_mget"],"query":[{"description":"A comma separated list of state endpoint names. Spaces are not allowed.","key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"903aaf13-6552-4d3a-8cb8-12780dad24a1","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"state\": \"CA\"\n  },\n  {\n    \"state\": \"CA\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/v2/state/component_mget?components=state/hpi_ts_forecast,state/rpi_ts_forecast","host":["https://api.housecanary.com"],"path":["v2","state","component_mget"],"query":[{"description":"A comma separated list of state endpoint names. Spaces are not allowed.","key":"components","value":"state/hpi_ts_forecast,state/rpi_ts_forecast"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f07b8f01-d2d7-449f-b8d8-326ef57fbbab"}],"id":"f9d2c7fd-36fe-461f-bde7-f5bb7072bdd3","_postman_id":"f9d2c7fd-36fe-461f-bde7-f5bb7072bdd3","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Market Pulse","item":[{"name":"Market Pulse MSA Latest","id":"97571d56-da75-41c8-a1f8-f599d0bb40d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/msa/market_pulse/latest?msa=38060","description":"<p>Access the latest insights into rental supply and demand changes seen through active single-family detached inventory and pricing levels across MSAs. Receive in-depth market trend analysis for informed decision-making in a single API call. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>geoInfo.msa</td><td>string</td><td>5-digit Metropolitan Statistical Area ID</td><td>38060</td>\n        </tr>\n<tr><td>geoInfo.msaName</td><td>string</td><td>The name of the requested MSA</td><td>San Francisco-Oakland-Berkeley, CA</td>\n        </tr>\n<tr><td>listingStats</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats.eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats.listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","msa","market_pulse","latest"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"}],"variable":[]}},"response":[{"id":"e513d328-a370-43d3-afe4-f73e31be2a38","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse/latest?msa=38060","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse","latest"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"msa\": \"38060\",\n    \"msaName\": \"San Francisco-Oakland-Berkeley, CA\"\n  },\n  \"listingStats\": {\n    \"daysOnMarketMedian\": 50,\n    \"daysOnMarketMedianMovingAvg\": 54,\n    \"daysOnMarketNotContractMedian\": 45,\n    \"daysOnMarketNotContractMedianMovingAvg\": 48,\n    \"daysToCloseMedian\": 66,\n    \"daysToCloseMedianMovingAvg\": 63,\n    \"daysToContractMedian\": 36,\n    \"daysToContractMedianMovingAvg\": 42,\n    \"daysToFirstPriceDropMedian\": 42,\n    \"daysToFirstPriceDropMedianMovingAvg\": 43,\n    \"eventdate\": \"2021-01-01\",\n    \"listingsClosedCount\": 112,\n    \"listingsClosedCountMovingAvg\": 165,\n    \"listingsNewCount\": 339,\n    \"listingsNewCountMovingAvg\": 296,\n    \"listingsOnMarketCount\": 2636,\n    \"listingsOnMarketCountMovingAvg\": 2516,\n    \"listingsPriceChangeCount\": 112,\n    \"listingsPriceChangeCountMovingAvg\": 165,\n    \"listingsPriceDropCount\": 95,\n    \"listingsPriceDropCountMovingAvg\": 86,\n    \"listingsPriceDropPercent\": 3.6,\n    \"listingsPriceDropPercentMovingAvg\": 3.43,\n    \"listingsRemovedCount\": null,\n    \"listingsRemovedCountMovingAvg\": null,\n    \"listingsRemovedPercent\": null,\n    \"listingsRemovedPercentMovingAvg\": null,\n    \"listingsUnderContractCount\": 278,\n    \"listingsUnderContractCountMovingAvg\": 230,\n    \"listingsUnderContractPercent\": 34.79,\n    \"listingsUnderContractPercentMovingAvg\": 32.43,\n    \"monthsOfSupplyMedian\": 2.59,\n    \"monthsOfSupplyMedianMovingAvg\": 2.47,\n    \"priceChangePercentMedian\": -2.86,\n    \"priceChangePercentMedianMovingAvg\": -3.7,\n    \"priceClosedMedian\": 1005000,\n    \"priceClosedMedianMovingAvg\": 1051060,\n    \"priceNewListMedian\": 1200000,\n    \"priceNewListMedianMovingAvg\": 1173833,\n    \"priceOnMarketMedian\": 1099844,\n    \"priceOnMarketMedianMovingAvg\": 1096425,\n    \"pricePerSqftClosedMedian\": 608.46,\n    \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n    \"pricePerSqftNewListMedian\": 694.61,\n    \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n    \"pricePerSqftOnMarketMedian\": 664.72,\n    \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n    \"saleToListPriceMedian\": 98.27,\n    \"saleToListPriceMedianMovingAvg\": 98.8,\n    \"saleToListPriceOriginalMedian\": 96.1,\n    \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n  }\n}"},{"id":"8afd4f6e-e0e9-4f4e-9700-da46a95e6874","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse/latest?msa=38060","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse","latest"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"003e8f6a-9981-4fca-a6cc-37fab23d782c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse/latest?msa=38060","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse","latest"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e554df30-513b-4a5d-ae2c-270707eb5b46","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse/latest?msa=38060","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse","latest"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"97571d56-da75-41c8-a1f8-f599d0bb40d9"},{"name":"Market Pulse MSA Historical","id":"35082df0-b0e3-43a8-95dd-7a20f0f83493","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/msa/market_pulse/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","description":"<p>Access the latest insights into supply and demand changes seen through active single-family detached inventory and pricing levels across MSAs. Receive in-depth market trend analysis for informed decision-making in a single API call. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n<tr><td>start_date</td><td>string</td><td>The earliest date of the desired time-series range</td><td>2025-11-01</td>\n        </tr>\n<tr><td>end_date</td><td>string</td><td>The latest date of the desired time-series range</td><td>2025-12-01</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>geoInfo.msa</td><td>string</td><td>5-digit Metropolitan Statistical Area ID</td><td>38060</td>\n        </tr>\n<tr><td>geoInfo.msaName</td><td>string</td><td>The name of the requested MSA</td><td>San Francisco-Oakland-Berkeley, CA</td>\n        </tr>\n<tr><td>listingStats</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats[].eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","msa","market_pulse","timeseries"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>The earliest date of the desired time-series range</p>\n","type":"text/plain"},"key":"start_date","value":"2025-11-01"},{"description":{"content":"<p>The latest date of the desired time-series range</p>\n","type":"text/plain"},"key":"end_date","value":"2025-12-01"}],"variable":[]}},"response":[{"id":"550a6c83-ad7f-4ae2-a016-a4ea43bbcd31","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse","timeseries"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"msa\": \"38060\",\n    \"msaName\": \"San Francisco-Oakland-Berkeley, CA\"\n  },\n  \"listingStats\": [\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    },\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    }\n  ]\n}"},{"id":"2bf7d0b2-16f5-409b-855b-a0e1ba139f53","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse","timeseries"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"62012c39-4812-49b0-b869-f930cab67dc4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse","timeseries"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"6dda1a4d-0e91-4c92-8bcf-e2e038fe7e56","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse","timeseries"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"35082df0-b0e3-43a8-95dd-7a20f0f83493"},{"name":"Market Pulse MSA Rental Latest","id":"7c668203-b1ea-4aa9-9a25-afb76be8ba10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/msa/market_pulse_rental/latest?msa=38060","description":"<p>Access the latest insights into rental supply and demand changes seen through active single-family detached inventory and pricing levels across MSAs. Receive in-depth market trend analysis for informed decision-making in a single API call. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>geoInfo.msa</td><td>string</td><td>5-digit Metropolitan Statistical Area ID</td><td>38060</td>\n        </tr>\n<tr><td>geoInfo.msaName</td><td>string</td><td>The name of the requested MSA</td><td>San Francisco-Oakland-Berkeley, CA</td>\n        </tr>\n<tr><td>listingStats</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats.eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats.listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","msa","market_pulse_rental","latest"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"}],"variable":[]}},"response":[{"id":"77ab99fb-2417-4940-93e0-766d875965f7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse_rental/latest?msa=38060","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse_rental","latest"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"msa\": \"38060\",\n    \"msaName\": \"San Francisco-Oakland-Berkeley, CA\"\n  },\n  \"listingStats\": {\n    \"daysOnMarketMedian\": 50,\n    \"daysOnMarketMedianMovingAvg\": 54,\n    \"daysOnMarketNotContractMedian\": 45,\n    \"daysOnMarketNotContractMedianMovingAvg\": 48,\n    \"daysToCloseMedian\": 66,\n    \"daysToCloseMedianMovingAvg\": 63,\n    \"daysToContractMedian\": 36,\n    \"daysToContractMedianMovingAvg\": 42,\n    \"daysToFirstPriceDropMedian\": 42,\n    \"daysToFirstPriceDropMedianMovingAvg\": 43,\n    \"eventdate\": \"2021-01-01\",\n    \"listingsClosedCount\": 112,\n    \"listingsClosedCountMovingAvg\": 165,\n    \"listingsNewCount\": 339,\n    \"listingsNewCountMovingAvg\": 296,\n    \"listingsOnMarketCount\": 2636,\n    \"listingsOnMarketCountMovingAvg\": 2516,\n    \"listingsPriceChangeCount\": 112,\n    \"listingsPriceChangeCountMovingAvg\": 165,\n    \"listingsPriceDropCount\": 95,\n    \"listingsPriceDropCountMovingAvg\": 86,\n    \"listingsPriceDropPercent\": 3.6,\n    \"listingsPriceDropPercentMovingAvg\": 3.43,\n    \"listingsRemovedCount\": null,\n    \"listingsRemovedCountMovingAvg\": null,\n    \"listingsRemovedPercent\": null,\n    \"listingsRemovedPercentMovingAvg\": null,\n    \"listingsUnderContractCount\": 278,\n    \"listingsUnderContractCountMovingAvg\": 230,\n    \"listingsUnderContractPercent\": 34.79,\n    \"listingsUnderContractPercentMovingAvg\": 32.43,\n    \"monthsOfSupplyMedian\": 2.59,\n    \"monthsOfSupplyMedianMovingAvg\": 2.47,\n    \"priceChangePercentMedian\": -2.86,\n    \"priceChangePercentMedianMovingAvg\": -3.7,\n    \"priceClosedMedian\": 1005000,\n    \"priceClosedMedianMovingAvg\": 1051060,\n    \"priceNewListMedian\": 1200000,\n    \"priceNewListMedianMovingAvg\": 1173833,\n    \"priceOnMarketMedian\": 1099844,\n    \"priceOnMarketMedianMovingAvg\": 1096425,\n    \"pricePerSqftClosedMedian\": 608.46,\n    \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n    \"pricePerSqftNewListMedian\": 694.61,\n    \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n    \"pricePerSqftOnMarketMedian\": 664.72,\n    \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n    \"saleToListPriceMedian\": 98.27,\n    \"saleToListPriceMedianMovingAvg\": 98.8,\n    \"saleToListPriceOriginalMedian\": 96.1,\n    \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n  }\n}"},{"id":"d569b9c9-1dad-4fcc-bfac-eb63ca04e668","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse_rental/latest?msa=38060","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse_rental","latest"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"334e43a4-cbfe-4b63-adb0-9fe5e447ea71","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse_rental/latest?msa=38060","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse_rental","latest"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ce66a95b-99db-4670-b9d8-04fa90854219","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse_rental/latest?msa=38060","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse_rental","latest"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"7c668203-b1ea-4aa9-9a25-afb76be8ba10"},{"name":"Market Pulse MSA Rental Historical","id":"da17614d-bce9-434a-9ec0-27a43af62de5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/msa/market_pulse_rental/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","description":"<p>Explore rental supply and demand changes for single-family detached properties across MSAs over a requested time range, enabling in-depth rental market trend analysis and historical performance evaluation. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>msa</td><td>string</td><td>5-digit US-census msa ID</td><td>38060</td>\n        </tr>\n<tr><td>start_date</td><td>string</td><td>The earliest date of the desired time-series range</td><td>2025-11-01</td>\n        </tr>\n<tr><td>end_date</td><td>string</td><td>The latest date of the desired time-series range</td><td>2025-12-01</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>geoInfo.msa</td><td>string</td><td>5-digit Metropolitan Statistical Area ID</td><td>38060</td>\n        </tr>\n<tr><td>geoInfo.msaName</td><td>string</td><td>The name of the requested MSA</td><td>San Francisco-Oakland-Berkeley, CA</td>\n        </tr>\n<tr><td>listingStats</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats[].eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","msa","market_pulse_rental","timeseries"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit US-census msa ID</p>\n","type":"text/plain"},"key":"msa","value":"38060"},{"description":{"content":"<p>The earliest date of the desired time-series range</p>\n","type":"text/plain"},"key":"start_date","value":"2025-11-01"},{"description":{"content":"<p>The latest date of the desired time-series range</p>\n","type":"text/plain"},"key":"end_date","value":"2025-12-01"}],"variable":[]}},"response":[{"id":"51f71593-bfd4-4d99-b8ce-d099bd60c3ab","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse_rental/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse_rental","timeseries"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"msa\": \"38060\",\n    \"msaName\": \"San Francisco-Oakland-Berkeley, CA\"\n  },\n  \"listingStats\": [\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    },\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    }\n  ]\n}"},{"id":"e463d76a-a8dd-4003-9aa5-4dcdac135ca7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse_rental/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse_rental","timeseries"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4afcecb0-a662-4c1a-9448-5bf087319fed","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse_rental/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse_rental","timeseries"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"44fb64f2-88f5-4cf8-b46e-3e22060f33a1","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/msa/market_pulse_rental/timeseries?msa=38060&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","msa","market_pulse_rental","timeseries"],"query":[{"description":"5-digit US-census msa ID","key":"msa","value":"38060"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"da17614d-bce9-434a-9ec0-27a43af62de5"},{"name":"Market Pulse State Latest","id":"03d58f63-392b-44bc-8aa2-97c6345863f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/state/market_pulse/latest?state=CA","description":"<p>Access the latest insights into supply and demand changes seen through active single-family detached inventory and pricing levels within most states across the US. Receive in-depth market trend analysis for informed decision-making in a single API call. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td>An object describing the relevant geographic element.</td><td></td>\n        </tr>\n<tr><td>geoInfo.state</td><td>string</td><td>The requested state (2-letter abbreviation)</td><td>CA</td>\n        </tr>\n<tr><td>listingStats</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats.eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats.listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","state","market_pulse","latest"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"}],"variable":[]}},"response":[{"id":"8ddc63ea-568b-4998-b475-8fbce1ea543d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse/latest?state=CA","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse","latest"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"state\": \"CA\"\n  },\n  \"listingStats\": {\n    \"daysOnMarketMedian\": 50,\n    \"daysOnMarketMedianMovingAvg\": 54,\n    \"daysOnMarketNotContractMedian\": 45,\n    \"daysOnMarketNotContractMedianMovingAvg\": 48,\n    \"daysToCloseMedian\": 66,\n    \"daysToCloseMedianMovingAvg\": 63,\n    \"daysToContractMedian\": 36,\n    \"daysToContractMedianMovingAvg\": 42,\n    \"daysToFirstPriceDropMedian\": 42,\n    \"daysToFirstPriceDropMedianMovingAvg\": 43,\n    \"eventdate\": \"2021-01-01\",\n    \"listingsClosedCount\": 112,\n    \"listingsClosedCountMovingAvg\": 165,\n    \"listingsNewCount\": 339,\n    \"listingsNewCountMovingAvg\": 296,\n    \"listingsOnMarketCount\": 2636,\n    \"listingsOnMarketCountMovingAvg\": 2516,\n    \"listingsPriceChangeCount\": 112,\n    \"listingsPriceChangeCountMovingAvg\": 165,\n    \"listingsPriceDropCount\": 95,\n    \"listingsPriceDropCountMovingAvg\": 86,\n    \"listingsPriceDropPercent\": 3.6,\n    \"listingsPriceDropPercentMovingAvg\": 3.43,\n    \"listingsRemovedCount\": null,\n    \"listingsRemovedCountMovingAvg\": null,\n    \"listingsRemovedPercent\": null,\n    \"listingsRemovedPercentMovingAvg\": null,\n    \"listingsUnderContractCount\": 278,\n    \"listingsUnderContractCountMovingAvg\": 230,\n    \"listingsUnderContractPercent\": 34.79,\n    \"listingsUnderContractPercentMovingAvg\": 32.43,\n    \"monthsOfSupplyMedian\": 2.59,\n    \"monthsOfSupplyMedianMovingAvg\": 2.47,\n    \"priceChangePercentMedian\": -2.86,\n    \"priceChangePercentMedianMovingAvg\": -3.7,\n    \"priceClosedMedian\": 1005000,\n    \"priceClosedMedianMovingAvg\": 1051060,\n    \"priceNewListMedian\": 1200000,\n    \"priceNewListMedianMovingAvg\": 1173833,\n    \"priceOnMarketMedian\": 1099844,\n    \"priceOnMarketMedianMovingAvg\": 1096425,\n    \"pricePerSqftClosedMedian\": 608.46,\n    \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n    \"pricePerSqftNewListMedian\": 694.61,\n    \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n    \"pricePerSqftOnMarketMedian\": 664.72,\n    \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n    \"saleToListPriceMedian\": 98.27,\n    \"saleToListPriceMedianMovingAvg\": 98.8,\n    \"saleToListPriceOriginalMedian\": 96.1,\n    \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n  }\n}"},{"id":"08334718-c940-4c9a-b473-c984191b88c7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse/latest?state=CA","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse","latest"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"bae010d1-552a-41ab-88cb-08be2e6e1ee1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse/latest?state=CA","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse","latest"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b8b78c22-2642-4ec9-a8c6-95f189fc3f9a","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse/latest?state=CA","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse","latest"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"03d58f63-392b-44bc-8aa2-97c6345863f8"},{"name":"Market Pulse State Rental Latest","id":"1361e7d1-572d-4eae-b227-7dcf1cd66c9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/state/market_pulse_rental/latest?state=CA","description":"<p>Explore rental supply and demand changes for single-family detached properties within most states across the US over a requested time range, enabling in-depth rental market trend analysis and historical performance evaluation. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td>An object describing the relevant geographic element.</td><td></td>\n        </tr>\n<tr><td>geoInfo.state</td><td>string</td><td>The name of the requested state</td><td>CA</td>\n        </tr>\n<tr><td>listingStats</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats.eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats.listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","state","market_pulse_rental","latest"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"}],"variable":[]}},"response":[{"id":"1374022d-3e53-4e65-9850-11aebcecda5c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse_rental/latest?state=CA","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse_rental","latest"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"state\": \"CA\"\n  },\n  \"listingStats\": {\n    \"daysOnMarketMedian\": 50,\n    \"daysOnMarketMedianMovingAvg\": 54,\n    \"daysOnMarketNotContractMedian\": 45,\n    \"daysOnMarketNotContractMedianMovingAvg\": 48,\n    \"daysToCloseMedian\": 66,\n    \"daysToCloseMedianMovingAvg\": 63,\n    \"daysToContractMedian\": 36,\n    \"daysToContractMedianMovingAvg\": 42,\n    \"daysToFirstPriceDropMedian\": 42,\n    \"daysToFirstPriceDropMedianMovingAvg\": 43,\n    \"eventdate\": \"2021-01-01\",\n    \"listingsClosedCount\": 112,\n    \"listingsClosedCountMovingAvg\": 165,\n    \"listingsNewCount\": 339,\n    \"listingsNewCountMovingAvg\": 296,\n    \"listingsOnMarketCount\": 2636,\n    \"listingsOnMarketCountMovingAvg\": 2516,\n    \"listingsPriceChangeCount\": 112,\n    \"listingsPriceChangeCountMovingAvg\": 165,\n    \"listingsPriceDropCount\": 95,\n    \"listingsPriceDropCountMovingAvg\": 86,\n    \"listingsPriceDropPercent\": 3.6,\n    \"listingsPriceDropPercentMovingAvg\": 3.43,\n    \"listingsRemovedCount\": null,\n    \"listingsRemovedCountMovingAvg\": null,\n    \"listingsRemovedPercent\": null,\n    \"listingsRemovedPercentMovingAvg\": null,\n    \"listingsUnderContractCount\": 278,\n    \"listingsUnderContractCountMovingAvg\": 230,\n    \"listingsUnderContractPercent\": 34.79,\n    \"listingsUnderContractPercentMovingAvg\": 32.43,\n    \"monthsOfSupplyMedian\": 2.59,\n    \"monthsOfSupplyMedianMovingAvg\": 2.47,\n    \"priceChangePercentMedian\": -2.86,\n    \"priceChangePercentMedianMovingAvg\": -3.7,\n    \"priceClosedMedian\": 1005000,\n    \"priceClosedMedianMovingAvg\": 1051060,\n    \"priceNewListMedian\": 1200000,\n    \"priceNewListMedianMovingAvg\": 1173833,\n    \"priceOnMarketMedian\": 1099844,\n    \"priceOnMarketMedianMovingAvg\": 1096425,\n    \"pricePerSqftClosedMedian\": 608.46,\n    \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n    \"pricePerSqftNewListMedian\": 694.61,\n    \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n    \"pricePerSqftOnMarketMedian\": 664.72,\n    \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n    \"saleToListPriceMedian\": 98.27,\n    \"saleToListPriceMedianMovingAvg\": 98.8,\n    \"saleToListPriceOriginalMedian\": 96.1,\n    \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n  }\n}"},{"id":"bf49d87a-287c-4fd7-8273-b5080a685bdd","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse_rental/latest?state=CA","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse_rental","latest"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"a45a5e0a-3758-40fd-950c-0881c10179bb","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse_rental/latest?state=CA","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse_rental","latest"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"7c4c494a-0e5b-4949-b829-e483a9f2f1bf","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse_rental/latest?state=CA","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse_rental","latest"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"1361e7d1-572d-4eae-b227-7dcf1cd66c9f"},{"name":"Market Pulse State Rental Historical","id":"5d87f264-9e99-42cc-87c4-6a1a6f5d6a32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/state/market_pulse_rental/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","description":"<p>Explore rental supply and demand changes for single-family detached properties within most states across the US over a requested time range, enabling in-depth rental market trend analysis and historical performance evaluation. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n<tr><td>start_date</td><td>string</td><td>The earliest date of the desired time-series range</td><td>2025-11-01</td>\n        </tr>\n<tr><td>end_date</td><td>string</td><td>The latest date of the desired time-series range</td><td>2025-12-01</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td>An object describing the relevant geographic element.</td><td></td>\n        </tr>\n<tr><td>geoInfo.state</td><td>string</td><td>The identifier of the requested state</td><td>CA</td>\n        </tr>\n<tr><td>listingStats</td><td>array</td><td>An object containing market statistics for the requested zipcode. See below for a description of the properties in this object.</td><td></td>\n        </tr>\n<tr><td>listingStats[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats[].eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","state","market_pulse_rental","timeseries"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>The earliest date of the desired time-series range</p>\n","type":"text/plain"},"key":"start_date","value":"2025-11-01"},{"description":{"content":"<p>The latest date of the desired time-series range</p>\n","type":"text/plain"},"key":"end_date","value":"2025-12-01"}],"variable":[]}},"response":[{"id":"6835071d-b431-4b33-b2c1-2655c384c19b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse_rental/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse_rental","timeseries"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"state\": \"CA\"\n  },\n  \"listingStats\": [\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    },\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    }\n  ]\n}"},{"id":"ec862873-08a1-4790-a848-03c6023e5d93","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse_rental/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse_rental","timeseries"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"59468336-35f2-415f-b3bd-4f99bf2b3cbc","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse_rental/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse_rental","timeseries"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"3827d55c-9f11-4f04-9c08-52c83557322c","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse_rental/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse_rental","timeseries"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"5d87f264-9e99-42cc-87c4-6a1a6f5d6a32"},{"name":"Market Pulse State Historical","id":"377cecf8-aef4-4b63-8849-259d33e41734","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/state/market_pulse/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","description":"<p>Explore supply and demand changes for single-family detached properties within most states across the US over a requested time range, enabling in-depth market trend analysis and historical performance evaluation. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>state</td><td>string</td><td>2-letter state abbreviation</td><td>CA</td>\n        </tr>\n<tr><td>start_date</td><td>string</td><td>The earliest date of the desired time-series range</td><td>2025-11-01</td>\n        </tr>\n<tr><td>end_date</td><td>string</td><td>The latest date of the desired time-series range</td><td>2025-12-01</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td>An object describing the relevant geographic element.</td><td></td>\n        </tr>\n<tr><td>geoInfo.state</td><td>string</td><td>The identifier of the requested state</td><td>CA</td>\n        </tr>\n<tr><td>listingStats</td><td>array</td><td>An object containing market statistics for the requested zipcode. See below for a description of the properties in this object.</td><td></td>\n        </tr>\n<tr><td>listingStats[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats[].eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","state","market_pulse","timeseries"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>2-letter state abbreviation</p>\n","type":"text/plain"},"key":"state","value":"CA"},{"description":{"content":"<p>The earliest date of the desired time-series range</p>\n","type":"text/plain"},"key":"start_date","value":"2025-11-01"},{"description":{"content":"<p>The latest date of the desired time-series range</p>\n","type":"text/plain"},"key":"end_date","value":"2025-12-01"}],"variable":[]}},"response":[{"id":"335a4a37-9c11-4ad7-a093-78e0f4f1b258","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse","timeseries"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"state\": \"CA\"\n  },\n  \"listingStats\": [\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    },\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    }\n  ]\n}"},{"id":"dc971e92-c6e3-4943-a22e-1c1800abcfa7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse","timeseries"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"7e87650d-b1fa-42e0-9f8e-09648325030b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse","timeseries"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"65a5484b-c4aa-4a34-a5e1-68b8ec48a647","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/state/market_pulse/timeseries?state=CA&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","state","market_pulse","timeseries"],"query":[{"description":"2-letter state abbreviation","key":"state","value":"CA"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"377cecf8-aef4-4b63-8849-259d33e41734"},{"name":"Market Pulse Zipcode Latest","id":"da037448-8e7c-457b-9b89-23d87827929b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/zip/market_pulse/latest?zipcode=33019","description":"<p>Access the latest insights into supply and demand changes seen through active single-family detached inventory and pricing levels within a broad range of ZIP codes across the US. Receive in-depth market trend analysis for informed decision-making in a single API call. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td>An object describing the relevant geographic element</td><td></td>\n        </tr>\n<tr><td>geoInfo.zipcode</td><td>string</td><td>The requested zipcode</td><td>82282</td>\n        </tr>\n<tr><td>listingStats</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats.daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats.daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats.daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats.daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats.eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats.listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats.listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats.listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats.listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats.listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats.monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats.priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats.priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats.priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats.priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats.pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats.saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","zip","market_pulse","latest"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"}],"variable":[]}},"response":[{"id":"b41c487c-8c91-4281-894b-996570f5337f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/zip/market_pulse/latest?zipcode=33019","host":["https://api.housecanary.com"],"path":["v3","zip","market_pulse","latest"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"zipcode\": \"82282\"\n  },\n  \"listingStats\": {\n    \"daysOnMarketMedian\": 50,\n    \"daysOnMarketMedianMovingAvg\": 54,\n    \"daysOnMarketNotContractMedian\": 45,\n    \"daysOnMarketNotContractMedianMovingAvg\": 48,\n    \"daysToCloseMedian\": 66,\n    \"daysToCloseMedianMovingAvg\": 63,\n    \"daysToContractMedian\": 36,\n    \"daysToContractMedianMovingAvg\": 42,\n    \"daysToFirstPriceDropMedian\": 42,\n    \"daysToFirstPriceDropMedianMovingAvg\": 43,\n    \"eventdate\": \"2021-01-01\",\n    \"listingsClosedCount\": 112,\n    \"listingsClosedCountMovingAvg\": 165,\n    \"listingsNewCount\": 339,\n    \"listingsNewCountMovingAvg\": 296,\n    \"listingsOnMarketCount\": 2636,\n    \"listingsOnMarketCountMovingAvg\": 2516,\n    \"listingsPriceChangeCount\": 112,\n    \"listingsPriceChangeCountMovingAvg\": 165,\n    \"listingsPriceDropCount\": 95,\n    \"listingsPriceDropCountMovingAvg\": 86,\n    \"listingsPriceDropPercent\": 3.6,\n    \"listingsPriceDropPercentMovingAvg\": 3.43,\n    \"listingsRemovedCount\": null,\n    \"listingsRemovedCountMovingAvg\": null,\n    \"listingsRemovedPercent\": null,\n    \"listingsRemovedPercentMovingAvg\": null,\n    \"listingsUnderContractCount\": 278,\n    \"listingsUnderContractCountMovingAvg\": 230,\n    \"listingsUnderContractPercent\": 34.79,\n    \"listingsUnderContractPercentMovingAvg\": 32.43,\n    \"monthsOfSupplyMedian\": 2.59,\n    \"monthsOfSupplyMedianMovingAvg\": 2.47,\n    \"priceChangePercentMedian\": -2.86,\n    \"priceChangePercentMedianMovingAvg\": -3.7,\n    \"priceClosedMedian\": 1005000,\n    \"priceClosedMedianMovingAvg\": 1051060,\n    \"priceNewListMedian\": 1200000,\n    \"priceNewListMedianMovingAvg\": 1173833,\n    \"priceOnMarketMedian\": 1099844,\n    \"priceOnMarketMedianMovingAvg\": 1096425,\n    \"pricePerSqftClosedMedian\": 608.46,\n    \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n    \"pricePerSqftNewListMedian\": 694.61,\n    \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n    \"pricePerSqftOnMarketMedian\": 664.72,\n    \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n    \"saleToListPriceMedian\": 98.27,\n    \"saleToListPriceMedianMovingAvg\": 98.8,\n    \"saleToListPriceOriginalMedian\": 96.1,\n    \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n  }\n}"},{"id":"5ab7b7f2-7b79-47c6-bdf5-8e944993f227","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/zip/market_pulse/latest?zipcode=33019","host":["https://api.housecanary.com"],"path":["v3","zip","market_pulse","latest"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"05948fca-6821-4533-8982-64c3886073c1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/zip/market_pulse/latest?zipcode=33019","host":["https://api.housecanary.com"],"path":["v3","zip","market_pulse","latest"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"f291348c-f00c-406b-8d7d-e5251ad77a67","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/zip/market_pulse/latest?zipcode=33019","host":["https://api.housecanary.com"],"path":["v3","zip","market_pulse","latest"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"da037448-8e7c-457b-9b89-23d87827929b"},{"name":"Market Pulse Zipcode Historical","id":"2d8d9bee-3aff-4935-b7cc-3b6cb689ca87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/zip/market_pulse/timeseries?zipcode=33019&start_date=2025-11-01&end_date=2025-12-01","description":"<p>Explore supply and demand changes for single-family detached properties across US zip codes over a requested time range, enabling in-depth market trend analysis and historical performance evaluation. </p>\n<p>Source: HouseCanary </p>\n<p>Pricing Tier: Included with Subscription </p>\n<p>Updated: Weekly</p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>zipcode</td><td>string</td><td>5-digit zipcode</td><td>33019</td>\n        </tr>\n<tr><td>start_date</td><td>string</td><td>The earliest date of the desired time-series range</td><td>2025-11-01</td>\n        </tr>\n<tr><td>end_date</td><td>string</td><td>The latest date of the desired time-series range</td><td>2025-12-01</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>geoInfo</td><td>object</td><td>An object describing the relevant geographic element</td><td></td>\n        </tr>\n<tr><td>geoInfo.zipcode</td><td>string</td><td>The requested zipcode</td><td>82282</td>\n        </tr>\n<tr><td>listingStats</td><td>array</td><td>An object containing market statistics for the requested zipcode</td><td></td>\n        </tr>\n<tr><td>listingStats[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>50</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale or in contract as of the date specified.</td><td>54</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedian</td><td>integer</td><td>Median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>45</td>\n        </tr>\n<tr><td>listingStats[].daysOnMarketNotContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market for all single family detached properties actively listed for sale as of the date specified.</td><td>48</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedian</td><td>integer</td><td>Median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>66</td>\n        </tr>\n<tr><td>listingStats[].daysToCloseMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to close date, for single family detached properties going into closed sale.</td><td>63</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedian</td><td>integer</td><td>Median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>36</td>\n        </tr>\n<tr><td>listingStats[].daysToContractMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to contract date, for single family detached properties going into contract.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedian</td><td>integer</td><td>Median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>42</td>\n        </tr>\n<tr><td>listingStats[].daysToFirstPriceDropMedianMovingAvg</td><td>integer</td><td>Moving average of median days on market from original list date to the first price reduction, for listed single family detached properties which experienced a price reduction.</td><td>43</td>\n        </tr>\n<tr><td>listingStats[].eventdate</td><td>string</td><td>Date of time series</td><td>2021-01-01</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCount</td><td>integer</td><td>Total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsClosedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which went into closed sale status during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCount</td><td>integer</td><td>Number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>339</td>\n        </tr>\n<tr><td>listingStats[].listingsNewCountMovingAvg</td><td>integer</td><td>Moving average of number of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>296</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCount</td><td>integer</td><td>Total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2636</td>\n        </tr>\n<tr><td>listingStats[].listingsOnMarketCountMovingAvg</td><td>integer</td><td>Moving average of total number of single family detached properties actively listed for sale, or in contract, as of the date specified.</td><td>2516</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>112</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceChangeCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced any price change during the week ending on the date specified.</td><td>165</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCount</td><td>integer</td><td>Total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>95</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>86</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercent</td><td>number</td><td>Percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.6</td>\n        </tr>\n<tr><td>listingStats[].listingsPriceDropPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>3.43</td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCount</td><td>integer</td><td>Total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercent</td><td>integer</td><td>Percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsRemovedPercentMovingAvg</td><td>integer</td><td>Moving average of percent of all actively listed single family detached properties removed from market during the week ending on the date specified (not due to going into contract or close).</td><td></td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCount</td><td>integer</td><td>Total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>278</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractCountMovingAvg</td><td>integer</td><td>Moving average of total number of listed single family detached properties going into contract during the week ending on the date specified.</td><td>230</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercent</td><td>number</td><td>Percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>34.79</td>\n        </tr>\n<tr><td>listingStats[].listingsUnderContractPercentMovingAvg</td><td>number</td><td>Moving average of percent of all actively listed single family detached properties in contract status as of the date specified.</td><td>32.43</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedian</td><td>number</td><td>Median months of supply for all single family detached properties as of the date specified.</td><td>2.59</td>\n        </tr>\n<tr><td>listingStats[].monthsOfSupplyMedianMovingAvg</td><td>number</td><td>Moving average of median months of supply for all single family detached properties as of the date specified.</td><td>2.47</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedian</td><td>number</td><td>The median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-2.86</td>\n        </tr>\n<tr><td>listingStats[].priceChangePercentMedianMovingAvg</td><td>number</td><td>Moving average of the median percent change in price, for actively listed single family detached properties which experienced a price reduction during the week ending on the date specified.</td><td>-3.7</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedian</td><td>integer</td><td>Median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1005000</td>\n        </tr>\n<tr><td>listingStats[].priceClosedMedianMovingAvg</td><td>integer</td><td>Moving average of median sold price of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>1051060</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedian</td><td>integer</td><td>Median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1200000</td>\n        </tr>\n<tr><td>listingStats[].priceNewListMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>1173833</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedian</td><td>integer</td><td>Median list price of all actively listed properties as of the date specified.</td><td>1099844</td>\n        </tr>\n<tr><td>listingStats[].priceOnMarketMedianMovingAvg</td><td>integer</td><td>Moving average of median list price of all actively listed properties as of the date specified.</td><td>1096425</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedian</td><td>number</td><td>Median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>608.46</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftClosedMedianMovingAvg</td><td>number</td><td>Moving average of median sold price-per-square-foot of single family detached properties going into closed sale status during the week ending on the date specified.</td><td>651.62</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedian</td><td>number</td><td>Median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>694.61</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftNewListMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of single family detached properties newly listed for sale during the week ending on the date specified.</td><td>699.52</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedian</td><td>number</td><td>Median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>664.72</td>\n        </tr>\n<tr><td>listingStats[].pricePerSqftOnMarketMedianMovingAvg</td><td>number</td><td>Moving average of median list price-per-square-foot of all actively listed single family detached properties as of the date specified.</td><td>659.75</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.27</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the most recently listed price prior to the property going into contract. Result is expressed as a percentage.</td><td>98.8</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedian</td><td>number</td><td>Median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>96.1</td>\n        </tr>\n<tr><td>listingStats[].saleToListPriceOriginalMedianMovingAvg</td><td>number</td><td>Moving average of median sale-to-list price ratio computed as the closed sale price over the original listed price. Result is expressed as a percentage.</td><td>97.08</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","zip","market_pulse","timeseries"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>5-digit zipcode</p>\n","type":"text/plain"},"key":"zipcode","value":"33019"},{"description":{"content":"<p>The earliest date of the desired time-series range</p>\n","type":"text/plain"},"key":"start_date","value":"2025-11-01"},{"description":{"content":"<p>The latest date of the desired time-series range</p>\n","type":"text/plain"},"key":"end_date","value":"2025-12-01"}],"variable":[]}},"response":[{"id":"a409eb72-bbec-4d14-b90d-8aecc8313526","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/zip/market_pulse/timeseries?zipcode=33019&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","zip","market_pulse","timeseries"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"geoInfo\": {\n    \"zipcode\": \"82282\"\n  },\n  \"listingStats\": [\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    },\n    {\n      \"daysOnMarketMedian\": 50,\n      \"daysOnMarketMedianMovingAvg\": 54,\n      \"daysOnMarketNotContractMedian\": 45,\n      \"daysOnMarketNotContractMedianMovingAvg\": 48,\n      \"daysToCloseMedian\": 66,\n      \"daysToCloseMedianMovingAvg\": 63,\n      \"daysToContractMedian\": 36,\n      \"daysToContractMedianMovingAvg\": 42,\n      \"daysToFirstPriceDropMedian\": 42,\n      \"daysToFirstPriceDropMedianMovingAvg\": 43,\n      \"eventdate\": \"2021-01-01\",\n      \"listingsClosedCount\": 112,\n      \"listingsClosedCountMovingAvg\": 165,\n      \"listingsNewCount\": 339,\n      \"listingsNewCountMovingAvg\": 296,\n      \"listingsOnMarketCount\": 2636,\n      \"listingsOnMarketCountMovingAvg\": 2516,\n      \"listingsPriceChangeCount\": 112,\n      \"listingsPriceChangeCountMovingAvg\": 165,\n      \"listingsPriceDropCount\": 95,\n      \"listingsPriceDropCountMovingAvg\": 86,\n      \"listingsPriceDropPercent\": 3.6,\n      \"listingsPriceDropPercentMovingAvg\": 3.43,\n      \"listingsRemovedCount\": null,\n      \"listingsRemovedCountMovingAvg\": null,\n      \"listingsRemovedPercent\": null,\n      \"listingsRemovedPercentMovingAvg\": null,\n      \"listingsUnderContractCount\": 278,\n      \"listingsUnderContractCountMovingAvg\": 230,\n      \"listingsUnderContractPercent\": 34.79,\n      \"listingsUnderContractPercentMovingAvg\": 32.43,\n      \"monthsOfSupplyMedian\": 2.59,\n      \"monthsOfSupplyMedianMovingAvg\": 2.47,\n      \"priceChangePercentMedian\": -2.86,\n      \"priceChangePercentMedianMovingAvg\": -3.7,\n      \"priceClosedMedian\": 1005000,\n      \"priceClosedMedianMovingAvg\": 1051060,\n      \"priceNewListMedian\": 1200000,\n      \"priceNewListMedianMovingAvg\": 1173833,\n      \"priceOnMarketMedian\": 1099844,\n      \"priceOnMarketMedianMovingAvg\": 1096425,\n      \"pricePerSqftClosedMedian\": 608.46,\n      \"pricePerSqftClosedMedianMovingAvg\": 651.62,\n      \"pricePerSqftNewListMedian\": 694.61,\n      \"pricePerSqftNewListMedianMovingAvg\": 699.52,\n      \"pricePerSqftOnMarketMedian\": 664.72,\n      \"pricePerSqftOnMarketMedianMovingAvg\": 659.75,\n      \"saleToListPriceMedian\": 98.27,\n      \"saleToListPriceMedianMovingAvg\": 98.8,\n      \"saleToListPriceOriginalMedian\": 96.1,\n      \"saleToListPriceOriginalMedianMovingAvg\": 97.08\n    }\n  ]\n}"},{"id":"d1888faf-7985-4012-90b0-8c429cc1dd1e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/zip/market_pulse/timeseries?zipcode=33019&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","zip","market_pulse","timeseries"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"3264c1d6-8bd1-4f28-972c-2a0461e5aa2d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/zip/market_pulse/timeseries?zipcode=33019&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","zip","market_pulse","timeseries"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"b7b2985b-b402-4b88-9e5b-64a74bb4eb6b","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/zip/market_pulse/timeseries?zipcode=33019&start_date=2025-11-01&end_date=2025-12-01","host":["https://api.housecanary.com"],"path":["v3","zip","market_pulse","timeseries"],"query":[{"description":"5-digit zipcode","key":"zipcode","value":"33019"},{"description":"The earliest date of the desired time-series range","key":"start_date","value":"2025-11-01"},{"description":"The latest date of the desired time-series range","key":"end_date","value":"2025-12-01"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"2d8d9bee-3aff-4935-b7cc-3b6cb689ca87"}],"id":"8c3e0079-3680-4185-802c-062f18e95779","_postman_id":"8c3e0079-3680-4185-802c-062f18e95779","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Portfolio Monitor API","item":[{"name":"List all portfolio assets","id":"0d05ef84-77b6-4d9c-9c30-cff2ca7e63c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","description":"<p>Get a list of all portfolio assets.   </p>\n<h2 id=\"request-path-params\">Request Path Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>portfolio_id</td><td>number</td><td>Portfolio ID</td><td>3</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>data</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].asset_id</td><td>string</td><td>Asset ID</td><td>bfe410d5-d6c0-47b6-bb66-5a7f37d95f91</td>\n        </tr>\n<tr><td>data.data[].client_id</td><td>string</td><td>Client ID</td><td>client123</td>\n        </tr>\n<tr><td>data.data[].address</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].address.address_slug</td><td>string</td><td>Address slug</td><td>6026-N-10th-Way-Phoenix-AZ-85014</td>\n        </tr>\n<tr><td>data.data[].address.address</td><td>string</td><td>Address</td><td>6026 N 10th Way</td>\n        </tr>\n<tr><td>data.data[].address.city</td><td>string</td><td>City</td><td>Phoenix</td>\n        </tr>\n<tr><td>data.data[].address.state</td><td>string</td><td>State</td><td>AZ</td>\n        </tr>\n<tr><td>data.data[].address.unit</td><td>string</td><td>Unit</td><td>A</td>\n        </tr>\n<tr><td>data.data[].address.zipcode</td><td>string</td><td>Zipcode</td><td>85014</td>\n        </tr>\n<tr><td>data.data[].data</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.year_built</td><td>integer</td><td>Year built</td><td>1966</td>\n        </tr>\n<tr><td>data.data[].data.closing_date</td><td>string</td><td>Closing date</td><td>2022-07-20</td>\n        </tr>\n<tr><td>data.data[].data.closing_price</td><td>integer</td><td>Closing price</td><td>465000</td>\n        </tr>\n<tr><td>data.data[].data.last_update</td><td>string</td><td>Last update</td><td></td>\n        </tr>\n<tr><td>data.data[].data.listing_date</td><td>string</td><td>Listing date</td><td>2022-07-01</td>\n        </tr>\n<tr><td>data.data[].data.listing_price</td><td>integer</td><td>Listing price</td><td>450000</td>\n        </tr>\n<tr><td>data.data[].data.ltv</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.ltv.ltv_lwr</td><td>number</td><td>Loan-to-value lower bound</td><td>0.3709</td>\n        </tr>\n<tr><td>data.data[].data.ltv.ltv_mean</td><td>number</td><td>Loan-to-value mean</td><td>0.4297</td>\n        </tr>\n<tr><td>data.data[].data.ltv.ltv_upr</td><td>number</td><td>Loan-to-value upper bound</td><td>0.5106</td>\n        </tr>\n<tr><td>data.data[].data.mls_status</td><td>string</td><td>MLS Status</td><td>Closed</td>\n        </tr>\n<tr><td>data.data[].data.avm</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.avm.price_lwr</td><td>number</td><td>AVM lower bound</td><td>0.3709</td>\n        </tr>\n<tr><td>data.data[].data.avm.price_mean</td><td>number</td><td>AVM mean</td><td>0.4297</td>\n        </tr>\n<tr><td>data.data[].data.avm.price_upr</td><td>number</td><td>AVM upper bound</td><td>0.5106</td>\n        </tr>\n<tr><td>data.data[].data.nod</td><td>boolean</td><td>Notice of Default status</td><td></td>\n        </tr>\n<tr><td>data.data[].data.lien</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.lien.borrower</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.lien.borrower[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.lien.borrower[].name</td><td>string</td><td>Borrower name</td><td>John Smith</td>\n        </tr>\n<tr><td>data.data[].data.lien.contract_date</td><td>string</td><td>Contract date</td><td>2022-02-18</td>\n        </tr>\n<tr><td>data.data[].data.lien.due_date</td><td>string</td><td>Due date</td><td>2051-03-01</td>\n        </tr>\n<tr><td>data.data[].data.lien.lender</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.lien.lender.name</td><td>string</td><td>Lender name</td><td>ROCKET MORTGAGE LLC</td>\n        </tr>\n<tr><td>data.data[].data.lien.loan_type</td><td>string</td><td>Loan type</td><td>CONVENTIONAL</td>\n        </tr>\n<tr><td>data.data[].data.lien.amount</td><td>integer</td><td>Loan amount</td><td>166000</td>\n        </tr>\n<tr><td>data.data[].data.lien.interest_rate</td><td>number</td><td>Interest rate</td><td>3.92</td>\n        </tr>\n<tr><td>data.data[].data.lien.loan_term</td><td>integer</td><td>Loan term in months</td><td>348</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.agent_key</td><td>string</td><td>Agent key</td><td>58372361</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.agent_mls_id</td><td>string</td><td>Agent MLS ID</td><td>18372361</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.email</td><td>string</td><td>Email address</td><td>agent@example.com</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.license_number</td><td>string</td><td>License number</td><td>98372361</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.name</td><td>string</td><td>Agent name</td><td>John Smith</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.office</td><td>string</td><td>Office name</td><td>Real Estate Office</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.office_key</td><td>string</td><td>Office key</td><td>78372361</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.office_mls_id</td><td>string</td><td>Office MLS ID</td><td>68372361</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.phone</td><td>string</td><td>Phone number</td><td>555-123-4567</td>\n        </tr>\n<tr><td>data.data[].data.buyer_agent.phone_office</td><td>string</td><td>Office phone number</td><td>555-987-6543</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.agent_key</td><td>string</td><td>Agent key</td><td>58372361</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.agent_mls_id</td><td>string</td><td>Agent MLS ID</td><td>18372361</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.email</td><td>string</td><td>Email address</td><td>agent@example.com</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.license_number</td><td>string</td><td>License number</td><td>98372361</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.name</td><td>string</td><td>Agent name</td><td>John Smith</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.office</td><td>string</td><td>Office name</td><td>Real Estate Office</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.office_key</td><td>string</td><td>Office key</td><td>78372361</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.office_mls_id</td><td>string</td><td>Office MLS ID</td><td>68372361</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.phone</td><td>string</td><td>Phone number</td><td>555-123-4567</td>\n        </tr>\n<tr><td>data.data[].data.co_buyer_agent.phone_office</td><td>string</td><td>Office phone number</td><td>555-987-6543</td>\n        </tr>\n<tr><td>data.data[].data.list_agent</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.list_agent.agent_key</td><td>string</td><td>Agent key</td><td>58372361</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.agent_mls_id</td><td>string</td><td>Agent MLS ID</td><td>18372361</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.email</td><td>string</td><td>Email address</td><td>agent@example.com</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.license_number</td><td>string</td><td>License number</td><td>98372361</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.name</td><td>string</td><td>Agent name</td><td>John Smith</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.office</td><td>string</td><td>Office name</td><td>Real Estate Office</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.office_key</td><td>string</td><td>Office key</td><td>78372361</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.office_mls_id</td><td>string</td><td>Office MLS ID</td><td>68372361</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.phone</td><td>string</td><td>Phone number</td><td>555-123-4567</td>\n        </tr>\n<tr><td>data.data[].data.list_agent.phone_office</td><td>string</td><td>Office phone number</td><td>555-987-6543</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.agent_key</td><td>string</td><td>Agent key</td><td>58372361</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.agent_mls_id</td><td>string</td><td>Agent MLS ID</td><td>18372361</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.email</td><td>string</td><td>Email address</td><td>agent@example.com</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.license_number</td><td>string</td><td>License number</td><td>98372361</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.name</td><td>string</td><td>Agent name</td><td>John Smith</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.office</td><td>string</td><td>Office name</td><td>Real Estate Office</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.office_key</td><td>string</td><td>Office key</td><td>78372361</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.office_mls_id</td><td>string</td><td>Office MLS ID</td><td>68372361</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.phone</td><td>string</td><td>Phone number</td><td>555-123-4567</td>\n        </tr>\n<tr><td>data.data[].data.co_list_agent.phone_office</td><td>string</td><td>Office phone number</td><td>555-987-6543</td>\n        </tr>\n<tr><td>data.data[].data.propensity_to_list</td><td>number</td><td>Percentage propensity of the property to list compared to other homes in the zipcode</td><td>95</td>\n        </tr>\n<tr><td>data.data[].data.propensity_to_refi</td><td>number</td><td>Percentage propensity of the property to refinance compared to other homes in the zipcode</td><td>98</td>\n        </tr>\n<tr><td>data.data[].nod_event</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].nod_event.nod_type</td><td>string</td><td>Type of NOD event</td><td>DEFAULT</td>\n        </tr>\n<tr><td>data.data[].nod_event.recording_date</td><td>string</td><td>Date of NOD event</td><td>2021-01-01</td>\n        </tr>\n<tr><td>data.data[].avm</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].avm.price_mean</td><td>integer</td><td>HouseCanary automated monthly home value. Created using a robust model ensemble methodology.</td><td>325000</td>\n        </tr>\n<tr><td>data.data[].avm.price_upr</td><td>integer</td><td>HouseCanary AVM upper bound. Calculated as price_mean * (1 + fsd)</td><td>340000</td>\n        </tr>\n<tr><td>data.data[].avm.price_lwr</td><td>integer</td><td>HouseCanary AVM lower bound. Calculated as price_mean * (1 - fsd)</td><td>310000</td>\n        </tr>\n<tr><td>data.data[].ltv</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].ltv.ltv_lwr</td><td>integer</td><td>Loan-to-value lower bound</td><td>0.8</td>\n        </tr>\n<tr><td>data.data[].ltv.ltv_mean</td><td>integer</td><td>Loan-to-value mean</td><td>0.85</td>\n        </tr>\n<tr><td>data.data[].ltv.ltv_upr</td><td>integer</td><td>Loan-to-value upper bound</td><td>0.9</td>\n        </tr>\n<tr><td>data.data[].lien</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].lien.borrower</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].lien.borrower[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].lien.borrower[].name</td><td>string</td><td>Borrower name</td><td>John Doe</td>\n        </tr>\n<tr><td>data.data[].lien.contract_date</td><td>string</td><td>Contract date</td><td>2021-01-01</td>\n        </tr>\n<tr><td>data.data[].lien.due_date</td><td>string</td><td>Due date</td><td>2021-01-01</td>\n        </tr>\n<tr><td>data.data[].lien.lender</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.data[].lien.lender.name</td><td>string</td><td>Lender name</td><td>Bank of America</td>\n        </tr>\n<tr><td>data.data[].lien.loan_type</td><td>string</td><td>Loan type</td><td>Conventional</td>\n        </tr>\n<tr><td>data.data[].lien.amount</td><td>integer</td><td>Loan amount</td><td>300000</td>\n        </tr>\n<tr><td>data.data[].lien.interest_rate</td><td>integer</td><td>Interest rate</td><td>0.05</td>\n        </tr>\n<tr><td>data.data[].lien.loan_term</td><td>integer</td><td>Loan term</td><td>30</td>\n        </tr>\n<tr><td>data.cursor_next</td><td>string</td><td>The cursor for the next page of results</td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"host":["https://api.housecanary.com"],"query":[],"variable":[{"id":"43ab1763-344a-44ce-ad1e-b21bfa6a9f95","description":{"content":"<p>Portfolio ID</p>\n","type":"text/plain"},"type":"any","value":"3","key":"portfolio_id"}]}},"response":[{"id":"8664cd85-5b7b-43e1-ad2a-5f887a5c575a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"data\": [\n      {\n        \"asset_id\": \"bfe410d5-d6c0-47b6-bb66-5a7f37d95f91\",\n        \"address\": {\n          \"address_slug\": \"6026-N-10th-Way-Phoenix-AZ-85014\",\n          \"address\": \"6026 N 10th Way\",\n          \"city\": \"Phoenix\",\n          \"state\": \"AZ\",\n          \"unit\": \"A\",\n          \"zipcode\": \"85014\"\n        },\n        \"data\": {\n          \"year_built\": 1966,\n          \"closing_date\": \"2022-07-20\",\n          \"closing_price\": 465000,\n          \"listing_date\": \"2022-07-01\",\n          \"listing_price\": 450000,\n          \"mls_status\": \"Closed\",\n          \"last_update\": null,\n          \"ltv\": {\n            \"ltv_lwr\": 0.3709,\n            \"ltv_mean\": 0.4297,\n            \"ltv_upr\": 0.5106\n          },\n          \"avm\": {\n            \"price_lwr\": 0.3709,\n            \"price_mean\": 0.4297,\n            \"price_upr\": 0.5106\n          },\n          \"nod\": false,\n          \"lien\": {\n            \"borrower\": [\n              {\n                \"name\": \"John Smith\"\n              },\n              {\n                \"name\": \"John Smith\"\n              }\n            ],\n            \"contract_date\": \"2022-02-18\",\n            \"due_date\": \"2051-03-01\",\n            \"lender\": {\n              \"name\": \"ROCKET MORTGAGE LLC\"\n            },\n            \"loan_type\": \"CONVENTIONAL\",\n            \"amount\": 166000,\n            \"interest_rate\": 3.92,\n            \"loan_term\": 348\n          },\n          \"buyer_agent\": {\n            \"agent_key\": \"58372361\",\n            \"agent_mls_id\": \"18372361\",\n            \"email\": \"agent@example.com\",\n            \"license_number\": \"98372361\",\n            \"name\": \"John Smith\",\n            \"office\": \"Real Estate Office\",\n            \"office_key\": \"78372361\",\n            \"office_mls_id\": \"68372361\",\n            \"phone\": \"555-123-4567\",\n            \"phone_office\": \"555-987-6543\"\n          },\n          \"co_buyer_agent\": {\n            \"agent_key\": \"58372361\",\n            \"agent_mls_id\": \"18372361\",\n            \"email\": \"agent@example.com\",\n            \"license_number\": \"98372361\",\n            \"name\": \"John Smith\",\n            \"office\": \"Real Estate Office\",\n            \"office_key\": \"78372361\",\n            \"office_mls_id\": \"68372361\",\n            \"phone\": \"555-123-4567\",\n            \"phone_office\": \"555-987-6543\"\n          },\n          \"list_agent\": {\n            \"agent_key\": \"58372361\",\n            \"agent_mls_id\": \"18372361\",\n            \"email\": \"agent@example.com\",\n            \"license_number\": \"98372361\",\n            \"name\": \"John Smith\",\n            \"office\": \"Real Estate Office\",\n            \"office_key\": \"78372361\",\n            \"office_mls_id\": \"68372361\",\n            \"phone\": \"555-123-4567\",\n            \"phone_office\": \"555-987-6543\"\n          },\n          \"co_list_agent\": {\n            \"agent_key\": \"58372361\",\n            \"agent_mls_id\": \"18372361\",\n            \"email\": \"agent@example.com\",\n            \"license_number\": \"98372361\",\n            \"name\": \"John Smith\",\n            \"office\": \"Real Estate Office\",\n            \"office_key\": \"78372361\",\n            \"office_mls_id\": \"68372361\",\n            \"phone\": \"555-123-4567\",\n            \"phone_office\": \"555-987-6543\"\n          },\n          \"propensity_to_list\": 95,\n          \"propensity_to_refi\": 98\n        },\n        \"client_id\": \"client123\",\n        \"nod_event\": {\n          \"nod_type\": \"DEFAULT\",\n          \"recording_date\": \"2021-01-01\"\n        },\n        \"avm\": {\n          \"price_mean\": 325000,\n          \"price_upr\": 340000,\n          \"price_lwr\": 310000\n        },\n        \"ltv\": {\n          \"ltv_lwr\": 3812,\n          \"ltv_mean\": 5357,\n          \"ltv_upr\": 1711\n        },\n        \"lien\": {\n          \"borrower\": [\n            {\n              \"name\": \"John Doe\"\n            },\n            {\n              \"name\": \"John Doe\"\n            }\n          ],\n          \"contract_date\": \"2021-01-01\",\n          \"due_date\": \"2021-01-01\",\n          \"lender\": {\n            \"name\": \"Bank of America\"\n          },\n          \"loan_type\": \"Conventional\",\n          \"amount\": 300000,\n          \"interest_rate\": 1966,\n          \"loan_term\": 30\n        }\n      },\n      {\n        \"asset_id\": \"bfe410d5-d6c0-47b6-bb66-5a7f37d95f91\",\n        \"address\": {\n          \"address_slug\": \"6026-N-10th-Way-Phoenix-AZ-85014\",\n          \"address\": \"6026 N 10th Way\",\n          \"city\": \"Phoenix\",\n          \"state\": \"AZ\",\n          \"unit\": \"A\",\n          \"zipcode\": \"85014\"\n        },\n        \"data\": {\n          \"year_built\": 1966,\n          \"closing_date\": \"2022-07-20\",\n          \"closing_price\": 465000,\n          \"listing_date\": \"2022-07-01\",\n          \"listing_price\": 450000,\n          \"mls_status\": \"Closed\",\n          \"last_update\": null,\n          \"ltv\": {\n            \"ltv_lwr\": 0.3709,\n            \"ltv_mean\": 0.4297,\n            \"ltv_upr\": 0.5106\n          },\n          \"avm\": {\n            \"price_lwr\": 0.3709,\n            \"price_mean\": 0.4297,\n            \"price_upr\": 0.5106\n          },\n          \"nod\": false,\n          \"lien\": {\n            \"borrower\": [\n              {\n                \"name\": \"John Smith\"\n              },\n              {\n                \"name\": \"John Smith\"\n              }\n            ],\n            \"contract_date\": \"2022-02-18\",\n            \"due_date\": \"2051-03-01\",\n            \"lender\": {\n              \"name\": \"ROCKET MORTGAGE LLC\"\n            },\n            \"loan_type\": \"CONVENTIONAL\",\n            \"amount\": 166000,\n            \"interest_rate\": 3.92,\n            \"loan_term\": 348\n          },\n          \"buyer_agent\": {\n            \"agent_key\": \"58372361\",\n            \"agent_mls_id\": \"18372361\",\n            \"email\": \"agent@example.com\",\n            \"license_number\": \"98372361\",\n            \"name\": \"John Smith\",\n            \"office\": \"Real Estate Office\",\n            \"office_key\": \"78372361\",\n            \"office_mls_id\": \"68372361\",\n            \"phone\": \"555-123-4567\",\n            \"phone_office\": \"555-987-6543\"\n          },\n          \"co_buyer_agent\": {\n            \"agent_key\": \"58372361\",\n            \"agent_mls_id\": \"18372361\",\n            \"email\": \"agent@example.com\",\n            \"license_number\": \"98372361\",\n            \"name\": \"John Smith\",\n            \"office\": \"Real Estate Office\",\n            \"office_key\": \"78372361\",\n            \"office_mls_id\": \"68372361\",\n            \"phone\": \"555-123-4567\",\n            \"phone_office\": \"555-987-6543\"\n          },\n          \"list_agent\": {\n            \"agent_key\": \"58372361\",\n            \"agent_mls_id\": \"18372361\",\n            \"email\": \"agent@example.com\",\n            \"license_number\": \"98372361\",\n            \"name\": \"John Smith\",\n            \"office\": \"Real Estate Office\",\n            \"office_key\": \"78372361\",\n            \"office_mls_id\": \"68372361\",\n            \"phone\": \"555-123-4567\",\n            \"phone_office\": \"555-987-6543\"\n          },\n          \"co_list_agent\": {\n            \"agent_key\": \"58372361\",\n            \"agent_mls_id\": \"18372361\",\n            \"email\": \"agent@example.com\",\n            \"license_number\": \"98372361\",\n            \"name\": \"John Smith\",\n            \"office\": \"Real Estate Office\",\n            \"office_key\": \"78372361\",\n            \"office_mls_id\": \"68372361\",\n            \"phone\": \"555-123-4567\",\n            \"phone_office\": \"555-987-6543\"\n          },\n          \"propensity_to_list\": 95,\n          \"propensity_to_refi\": 98\n        },\n        \"client_id\": \"client123\",\n        \"nod_event\": {\n          \"nod_type\": \"DEFAULT\",\n          \"recording_date\": \"2021-01-01\"\n        },\n        \"avm\": {\n          \"price_mean\": 325000,\n          \"price_upr\": 340000,\n          \"price_lwr\": 310000\n        },\n        \"ltv\": {\n          \"ltv_lwr\": 531,\n          \"ltv_mean\": 6811,\n          \"ltv_upr\": 3093\n        },\n        \"lien\": {\n          \"borrower\": [\n            {\n              \"name\": \"John Doe\"\n            },\n            {\n              \"name\": \"John Doe\"\n            }\n          ],\n          \"contract_date\": \"2021-01-01\",\n          \"due_date\": \"2021-01-01\",\n          \"lender\": {\n            \"name\": \"Bank of America\"\n          },\n          \"loan_type\": \"Conventional\",\n          \"amount\": 300000,\n          \"interest_rate\": 9653,\n          \"loan_term\": 30\n        }\n      }\n    ],\n    \"cursor_next\": \"string\"\n  }\n}"},{"id":"1d54773d-d197-4635-94d2-db7dfdab9e2b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"0eb1f585-0d31-48cd-bc0a-e577bbb82080","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ccb0d5a8-bfdf-4302-9669-406cd6dd6c66","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"0d05ef84-77b6-4d9c-9c30-cff2ca7e63c8"},{"name":"Add assets to portfolio ","id":"cfc26701-5bb0-4256-bc89-1566bb103371","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  },\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","description":"<p>Add portfolio assets.   </p>\n<h2 id=\"request-path-params\">Request Path Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>portfolio_id</td><td>number</td><td>Portfolio ID</td><td>3</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>The street address of the property</td><td>1425 E Desert Cove Ave</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>The postal code in which the property is located</td><td>85020</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>data</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.success</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.success[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.success[].address</td><td>string</td><td>The street address of the property</td><td>1107 W Osborn Rd</td>\n        </tr>\n<tr><td>data.success[].address_slug</td><td>string</td><td>A slug generated from the address, typically used in URLs</td><td>1107-W-Osborn-Rd-Phoenix-AZ-85013</td>\n        </tr>\n<tr><td>data.success[].city</td><td>string</td><td>The city in which the property is located</td><td>Phoenix</td>\n        </tr>\n<tr><td>data.success[].client_id</td><td>string</td><td>The unique ID of the client who owns the property</td><td></td>\n        </tr>\n<tr><td>data.success[].id</td><td>string</td><td>The unique ID of the property</td><td>20832f0b-9184-4a83-bf8d-a2617a2f9707</td>\n        </tr>\n<tr><td>data.success[].state</td><td>string</td><td>The state in which the property is located</td><td>AZ</td>\n        </tr>\n<tr><td>data.success[].unit</td><td>string</td><td>The unit number, if applicable</td><td></td>\n        </tr>\n<tr><td>data.success[].zipcode</td><td>string</td><td>The zip code in which the property is located</td><td>85013</td>\n        </tr>\n<tr><td>data.error</td><td>array</td><td>An array containing errors for each asset that failed to be added</td><td></td>\n        </tr>\n<tr><td>data.error[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.error[].error</td><td>string</td><td>Error message associated with the asset that failed to be added</td><td>address not found</td>\n        </tr>\n<tr><td>data.error[].address</td><td>string</td><td>The street address of the property</td><td>1107 W Osborn Rd</td>\n        </tr>\n<tr><td>data.error[].address_slug</td><td>string</td><td>A slug generated from the address, typically used in URLs</td><td>1107-W-Osborn-Rd-Phoenix-AZ-85013</td>\n        </tr>\n<tr><td>data.error[].city</td><td>string</td><td>The city in which the property is located</td><td>Phoenix</td>\n        </tr>\n<tr><td>data.error[].client_id</td><td>string</td><td>The unique ID of the client who owns the property</td><td></td>\n        </tr>\n<tr><td>data.error[].id</td><td>string</td><td>The unique ID of the property</td><td>20832f0b-9184-4a83-bf8d-a2617a2f9707</td>\n        </tr>\n<tr><td>data.error[].state</td><td>string</td><td>The state in which the property is located</td><td>AZ</td>\n        </tr>\n<tr><td>data.error[].unit</td><td>string</td><td>The unit number, if applicable</td><td></td>\n        </tr>\n<tr><td>data.error[].zipcode</td><td>string</td><td>The zip code in which the property is located</td><td>85013</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"host":["https://api.housecanary.com"],"query":[],"variable":[{"id":"7aa1e55d-4c76-4e94-b14c-c2904308bf3f","description":{"content":"<p>Portfolio ID</p>\n","type":"text/plain"},"type":"any","value":"3","key":"portfolio_id"}]}},"response":[{"id":"f6cd0ad5-a827-4928-9a69-167374ea0218","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  },\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"success\": [\n      {\n        \"address\": \"1107 W Osborn Rd\",\n        \"address_slug\": \"1107-W-Osborn-Rd-Phoenix-AZ-85013\",\n        \"city\": \"Phoenix\",\n        \"id\": \"20832f0b-9184-4a83-bf8d-a2617a2f9707\",\n        \"state\": \"AZ\",\n        \"unit\": \"\",\n        \"zipcode\": \"85013\",\n        \"client_id\": null\n      },\n      {\n        \"address\": \"1107 W Osborn Rd\",\n        \"address_slug\": \"1107-W-Osborn-Rd-Phoenix-AZ-85013\",\n        \"city\": \"Phoenix\",\n        \"id\": \"20832f0b-9184-4a83-bf8d-a2617a2f9707\",\n        \"state\": \"AZ\",\n        \"unit\": \"\",\n        \"zipcode\": \"85013\",\n        \"client_id\": null\n      }\n    ],\n    \"error\": [\n      {\n        \"error\": \"address not found\",\n        \"address\": \"1107 W Osborn Rd\",\n        \"address_slug\": \"1107-W-Osborn-Rd-Phoenix-AZ-85013\",\n        \"city\": \"Phoenix\",\n        \"client_id\": null,\n        \"id\": \"20832f0b-9184-4a83-bf8d-a2617a2f9707\",\n        \"state\": \"AZ\",\n        \"unit\": \"\",\n        \"zipcode\": \"85013\"\n      },\n      {\n        \"error\": \"address not found\",\n        \"address\": \"1107 W Osborn Rd\",\n        \"address_slug\": \"1107-W-Osborn-Rd-Phoenix-AZ-85013\",\n        \"city\": \"Phoenix\",\n        \"client_id\": null,\n        \"id\": \"20832f0b-9184-4a83-bf8d-a2617a2f9707\",\n        \"state\": \"AZ\",\n        \"unit\": \"\",\n        \"zipcode\": \"85013\"\n      }\n    ]\n  }\n}"},{"id":"ca9a8201-8722-41b5-b0b3-f334838f9eea","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  },\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"47cc95e1-5684-465f-8757-537b60de64d9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  },\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"21f57c84-2198-4ce0-bfbc-ad39d38df97b","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  },\n  {\n    \"address\": \"1425 E Desert Cove Ave\",\n    \"zipcode\": \"85020\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"cfc26701-5bb0-4256-bc89-1566bb103371"},{"name":"Delete assets from a portfolio","id":"e45750e5-e147-4755-9a85-edcf41f81821","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"string\",\n  \"string\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","description":"<p>Delete assets from a portfolio.   </p>\n<h2 id=\"request-path-params\">Request Path Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>portfolio_id</td><td>number</td><td>Portfolio ID</td><td>3</td>\n        </tr>\n</table>\n\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>string</td><td>Asset ID</td><td><pre>[\n  \"20832f0b-9184-4a83-bf8d-a2617a2f9707\",\n  \"20832f0b-9184-4a83-bf8d-a2617a2f9707\"\n]</pre></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"host":["https://api.housecanary.com"],"query":[],"variable":[{"id":"25a93356-8ef6-4c54-a410-095977ce56a2","description":{"content":"<p>Portfolio ID</p>\n","type":"text/plain"},"type":"any","value":"3","key":"portfolio_id"}]}},"response":[{"id":"e4c4002b-7b44-4015-a5a4-ab8a652583c1","name":"No Content","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  \"string\",\n  \"string\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e6f4a7e6-d2ae-4e61-8996-d9f91bbefdb1","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  \"string\",\n  \"string\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"335d195a-4cfb-4953-a7f1-9e8d3124597f","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  \"string\",\n  \"string\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"49c4c643-3c72-411b-bd83-4542943b69fd","name":"Rate limit exceeded","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  \"string\",\n  \"string\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id/assets","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id","assets"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"e45750e5-e147-4755-9a85-edcf41f81821"},{"name":"Create a new portfolio ","id":"9b18776b-7f9d-4bf0-92c4-ce04a55d4ce5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"avm\": {\n    \"relative_to\": \"PORTFOLIO_CREATION\",\n    \"thresholds\": [\n      {\n        \"operator\": \"lt\",\n        \"value\": 0.3\n      }\n    ]\n  },\n  \"emails\": [\n    \"customer@email.com\"\n  ],\n  \"lien\": [\n    \"FHA\"\n  ],\n  \"ltv_thresholds\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 0.6\n    }\n  ],\n  \"mls_status\": [\n    \"ACTIVE\"\n  ],\n  \"name\": \"My First Portfolio\",\n  \"nod\": false,\n  \"propensity_to_list\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 95\n    }\n  ],\n  \"propensity_to_refi\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 55\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/portfolio-monitor/portfolios","description":"<p>Create a new portfolio   </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>avm</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>avm.relative_to</td><td>string</td><td>Reference Point From Which Avm is Calculated. Supported Values: \"PORTFOLIO_CREATION\" or \"LAST_MONTH\"</td><td>PORTFOLIO_CREATION</td>\n        </tr>\n<tr><td>avm.thresholds</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>avm.thresholds[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>avm.thresholds[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>avm.thresholds[].value</td><td>number</td><td>Literal Value of AVM</td><td>0.3</td>\n        </tr>\n<tr><td>emails</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>emails[]</td><td>string</td><td>Emails Addresses to Which Notifications Should be Sent</td><td>customer@email.com</td>\n        </tr>\n<tr><td>lien</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>lien[]</td><td>string</td><td>Set of all Lien Types on Which to Notify. Notification will be generated when property assumes one of the listed liens. Supported Values: \"ARM\", \"ASSUMPTION\", \"BALLOON\", \"CLOSED_END\", \"COMMERCIAL\", \"CONSTRUCTION\", \"CONVENTIONAL\", \"FANNIE_MAE_FREDDIE_MAC\", \"FARMERS_HOME_ADMINISTRATION\", \"FHA\", \"LAND_CONTRACT\", \"MODIFICATION\", \"NEGATIVE_AMORTIZATION\", \"NON_PURCHASE_MONEY\", \"OPEN_END\", \"OTHER\", \"PURCHASE_MONEY\", \"REVERSE\", \"REVOLVING_CREDIT_LINE\", \"SBA\", \"SECOND_TO_COVER_DOWN_PAYMENT\", \"SELLER_TAKE_BACK\", \"STAND_ALONE_FIRST\", \"STAND_ALONE_REFI\", \"STAND_ALONE_SECOND\", \"STATE_VETERANS\", \"UNKNOWN\", \"USDA\", \"VA\"</td><td>FHA</td>\n        </tr>\n<tr><td>ltv_thresholds</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>ltv_thresholds[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>ltv_thresholds[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>ltv_thresholds[].threshold</td><td>number</td><td>Value of LTV to trigger notification</td><td>0.6</td>\n        </tr>\n<tr><td>mls_status</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>mls_status[]</td><td>string</td><td>Set of MLS Status on Which to Notify. Notification will be generated when property assumes one of the listed values. Supported Values: \"EXPIRED\", \"WITHDRAWN\", \"COMING_SOON\", \"CLOSED\", \"PENDING\", \"DELETED\", \"LEASED\", \"SOLD\", \"CANCELLED\", \"CONTINGENT\", \"ACTIVE\"</td><td>ACTIVE</td>\n        </tr>\n<tr><td>name</td><td>string</td><td>Name of the Portfolio</td><td>My First Portfolio</td>\n        </tr>\n<tr><td>nod</td><td>boolean</td><td>Notice of Default</td><td></td>\n        </tr>\n<tr><td>propensity_to_list</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>propensity_to_list[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>propensity_to_list[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>propensity_to_list[].threshold</td><td>number</td><td>Value of Propensity to List to trigger notification</td><td>95</td>\n        </tr>\n<tr><td>propensity_to_refi</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>propensity_to_refi[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>propensity_to_refi[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>propensity_to_refi[].threshold</td><td>number</td><td>Value of Propensity to Refi to trigger notification</td><td>55</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>data</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.asset_count</td><td>integer</td><td>Count of Assets in the Portfolio</td><td>100</td>\n        </tr>\n<tr><td>data.avm</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.avm.relative_to</td><td>string</td><td>Reference Point From Which Avm is Calculated. Supported Values: \"PORTFOLIO_CREATION\" or \"LAST_MONTH\"</td><td>PORTFOLIO_CREATION</td>\n        </tr>\n<tr><td>data.avm.thresholds</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.avm.thresholds[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.avm.thresholds[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>data.avm.thresholds[].value</td><td>number</td><td>Literal Value of AVM</td><td>0.3</td>\n        </tr>\n<tr><td>data.columns</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.columns[]</td><td>string</td><td>Names of Each Column of the Portfolio</td><td>Value</td>\n        </tr>\n<tr><td>data.date_created</td><td>string</td><td>Date when portfolio was created</td><td>2023-01-01T00:00:00Z</td>\n        </tr>\n<tr><td>data.emails</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.emails[]</td><td>string</td><td>Emails Addresses to Which Notifications Should be Sent</td><td>customer@email.com</td>\n        </tr>\n<tr><td>data.lien</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.lien[]</td><td>string</td><td>Set of all Lien Types on Which to Notify. Notification will be generated when property assumes one of the listed liens. Supported Values: \"ARM\", \"ASSUMPTION\", \"BALLOON\", \"CLOSED_END\", \"COMMERCIAL\", \"CONSTRUCTION\", \"CONVENTIONAL\", \"FANNIE_MAE_FREDDIE_MAC\", \"FARMERS_HOME_ADMINISTRATION\", \"FHA\", \"LAND_CONTRACT\", \"MODIFICATION\", \"NEGATIVE_AMORTIZATION\", \"NON_PURCHASE_MONEY\", \"OPEN_END\", \"OTHER\", \"PURCHASE_MONEY\", \"REVERSE\", \"REVOLVING_CREDIT_LINE\", \"SBA\", \"SECOND_TO_COVER_DOWN_PAYMENT\", \"SELLER_TAKE_BACK\", \"STAND_ALONE_FIRST\", \"STAND_ALONE_REFI\", \"STAND_ALONE_SECOND\", \"STATE_VETERANS\", \"UNKNOWN\", \"USDA\", \"VA\"</td><td>FHA</td>\n        </tr>\n<tr><td>data.ltv_thresholds</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.ltv_thresholds[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.ltv_thresholds[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>data.ltv_thresholds[].threshold</td><td>number</td><td>Value of LTV to trigger notification</td><td>0.6</td>\n        </tr>\n<tr><td>data.mls_status</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.mls_status[]</td><td>string</td><td>Set of MLS Status on Which to Notify. Notification will be generated when property assumes one of the listed values. Supported Values: \"EXPIRED\", \"WITHDRAWN\", \"COMING_SOON\", \"CLOSED\", \"PENDING\", \"DELETED\", \"LEASED\", \"SOLD\", \"CANCELLED\", \"CONTINGENT\", \"ACTIVE\"</td><td>ACTIVE</td>\n        </tr>\n<tr><td>data.name</td><td>string</td><td>Name of the Portfolio</td><td>My First Portfolio</td>\n        </tr>\n<tr><td>data.nod</td><td>boolean</td><td>Notice of Default</td><td></td>\n        </tr>\n<tr><td>data.portfolio_id</td><td>string</td><td>Portfolio ID</td><td>a1b2c3d</td>\n        </tr>\n<tr><td>data.propensity_to_list</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.propensity_to_list[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.propensity_to_list[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>data.propensity_to_list[].threshold</td><td>number</td><td>Value of Propensity to List to trigger notification</td><td>95</td>\n        </tr>\n<tr><td>data.propensity_to_refi</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.propensity_to_refi[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.propensity_to_refi[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>data.propensity_to_refi[].threshold</td><td>number</td><td>Value of Propensity to Refi to trigger notification</td><td>95</td>\n        </tr>\n<tr><td>data.upload_status</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.upload_status.status</td><td>string</td><td>The Status of The Portfolio Upload Job</td><td>NOT_STARTED</td>\n        </tr>\n<tr><td>data.upload_status.file_name</td><td>string</td><td>Name of File Currently Uploading</td><td>GreatPortfolio.csv</td>\n        </tr>\n<tr><td>data.upload_status.latest_error_count</td><td>integer</td><td>Count of Errors Encountered When Uploading This Portfolio</td><td>1</td>\n        </tr>\n<tr><td>data.upload_status.success_count</td><td>integer</td><td>Count of Addresses Successfully Uploaded in This Portfolio</td><td>799</td>\n        </tr>\n<tr><td>data.upload_status.processed_count</td><td>integer</td><td>Count of All Addresses Processed for This Portfolio</td><td>800</td>\n        </tr>\n<tr><td>data.upload_status.total_addresses_in_file</td><td>integer</td><td>Count of All Addresses in Uploaded Portfolio File</td><td>800</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["portfolio-monitor","portfolios"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"c635b2b4-7a9b-499e-a3c2-5fe9c960a5c7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"avm\": {\n    \"relative_to\": \"PORTFOLIO_CREATION\",\n    \"thresholds\": [\n      {\n        \"operator\": \"lt\",\n        \"value\": 0.3\n      }\n    ]\n  },\n  \"emails\": [\n    \"customer@email.com\"\n  ],\n  \"lien\": [\n    \"FHA\"\n  ],\n  \"ltv_thresholds\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 0.6\n    }\n  ],\n  \"mls_status\": [\n    \"ACTIVE\"\n  ],\n  \"name\": \"My First Portfolio\",\n  \"nod\": false,\n  \"propensity_to_list\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 95\n    }\n  ],\n  \"propensity_to_refi\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 55\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/portfolio-monitor/portfolios"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"asset_count\": 100,\n    \"avm\": {\n      \"relative_to\": \"PORTFOLIO_CREATION\",\n      \"thresholds\": [\n        {\n          \"operator\": \"lt\",\n          \"value\": 0.3\n        }\n      ]\n    },\n    \"columns\": [\n      \"Value\",\n      \"Value\"\n    ],\n    \"date_created\": \"2023-01-01T00:00:00Z\",\n    \"emails\": [\n      \"customer@email.com\"\n    ],\n    \"lien\": [\n      \"FHA\"\n    ],\n    \"ltv_thresholds\": [\n      {\n        \"operator\": \"lt\",\n        \"threshold\": 0.6\n      }\n    ],\n    \"mls_status\": [\n      \"ACTIVE\"\n    ],\n    \"name\": \"My First Portfolio\",\n    \"nod\": false,\n    \"portfolio_id\": \"a1b2c3d\",\n    \"propensity_to_list\": [\n      {\n        \"operator\": \"lt\",\n        \"threshold\": 95\n      }\n    ],\n    \"propensity_to_refi\": [\n      {\n        \"operator\": \"lt\",\n        \"threshold\": 95\n      }\n    ],\n    \"upload_status\": {\n      \"status\": \"NOT_STARTED\",\n      \"file_name\": \"GreatPortfolio.csv\",\n      \"latest_error_count\": 1,\n      \"success_count\": 799,\n      \"processed_count\": 800,\n      \"total_addresses_in_file\": 800\n    }\n  }\n}"},{"id":"0f6ca13e-4c99-4af2-8e31-c5846ae522df","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"avm\": {\n    \"relative_to\": \"PORTFOLIO_CREATION\",\n    \"thresholds\": [\n      {\n        \"operator\": \"lt\",\n        \"value\": 0.3\n      }\n    ]\n  },\n  \"emails\": [\n    \"customer@email.com\"\n  ],\n  \"lien\": [\n    \"FHA\"\n  ],\n  \"ltv_thresholds\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 0.6\n    }\n  ],\n  \"mls_status\": [\n    \"ACTIVE\"\n  ],\n  \"name\": \"My First Portfolio\",\n  \"nod\": false,\n  \"propensity_to_list\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 95\n    }\n  ],\n  \"propensity_to_refi\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 55\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/portfolio-monitor/portfolios"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1c6babc1-533b-46ba-b9ba-323d2f26931f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"avm\": {\n    \"relative_to\": \"PORTFOLIO_CREATION\",\n    \"thresholds\": [\n      {\n        \"operator\": \"lt\",\n        \"value\": 0.3\n      }\n    ]\n  },\n  \"emails\": [\n    \"customer@email.com\"\n  ],\n  \"lien\": [\n    \"FHA\"\n  ],\n  \"ltv_thresholds\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 0.6\n    }\n  ],\n  \"mls_status\": [\n    \"ACTIVE\"\n  ],\n  \"name\": \"My First Portfolio\",\n  \"nod\": false,\n  \"propensity_to_list\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 95\n    }\n  ],\n  \"propensity_to_refi\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 55\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/portfolio-monitor/portfolios"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"bbee41a9-4db8-4bfa-b44a-9f1c39b35958","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"{\n  \"avm\": {\n    \"relative_to\": \"PORTFOLIO_CREATION\",\n    \"thresholds\": [\n      {\n        \"operator\": \"lt\",\n        \"value\": 0.3\n      }\n    ]\n  },\n  \"emails\": [\n    \"customer@email.com\"\n  ],\n  \"lien\": [\n    \"FHA\"\n  ],\n  \"ltv_thresholds\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 0.6\n    }\n  ],\n  \"mls_status\": [\n    \"ACTIVE\"\n  ],\n  \"name\": \"My First Portfolio\",\n  \"nod\": false,\n  \"propensity_to_list\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 95\n    }\n  ],\n  \"propensity_to_refi\": [\n    {\n      \"operator\": \"lt\",\n      \"threshold\": 55\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/portfolio-monitor/portfolios"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"9b18776b-7f9d-4bf0-92c4-ce04a55d4ce5"},{"name":"List all portfolios","id":"8354a0f0-7663-4a1c-b016-b7a10ccbc8f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/portfolio-monitor/portfolios","description":"<p>Get a list of all portfolios.   </p>\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>data</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data[].portfolio_id</td><td>string</td><td>Portfolio ID</td><td>a1b2c3d</td>\n        </tr>\n<tr><td>data[].date_created</td><td>string</td><td>Date when portfolio was created</td><td>2023-01-01T00:00:00Z</td>\n        </tr>\n<tr><td>data[].name</td><td>string</td><td>Name of the Portfolio</td><td>My First Portfolio</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["portfolio-monitor","portfolios"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"014e3313-2ee9-4f9f-9bed-66d792b737fa","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/portfolio-monitor/portfolios"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"portfolio_id\": \"a1b2c3d\",\n      \"date_created\": \"2023-01-01T00:00:00Z\",\n      \"name\": \"My First Portfolio\"\n    },\n    {\n      \"portfolio_id\": \"a1b2c3d\",\n      \"date_created\": \"2023-01-01T00:00:00Z\",\n      \"name\": \"My First Portfolio\"\n    }\n  ]\n}"},{"id":"26440830-9cf7-4c02-93c5-50b39488de85","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/portfolio-monitor/portfolios"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f1c39113-58b6-4751-a3f0-ff437abc3fa5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/portfolio-monitor/portfolios"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"a45e966f-a392-4302-ae4b-ef94adbe45ff","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/portfolio-monitor/portfolios"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"8354a0f0-7663-4a1c-b016-b7a10ccbc8f0"},{"name":"List all data for a portfolio","id":"c7a9a949-fdf8-4f0d-afdf-9f849812d5bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","description":"<p>Fetch the specified portfolio with all data, including asset count and portfolio metrics   </p>\n<h2 id=\"request-path-params\">Request Path Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>portfolio_id</td><td>number</td><td>Portfolio ID</td><td>3</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>data</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.asset_count</td><td>integer</td><td>Count of Assets in the Portfolio</td><td>100</td>\n        </tr>\n<tr><td>data.avm</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.avm.relative_to</td><td>string</td><td>Reference Point From Which Avm is Calculated. Supported Values: \"PORTFOLIO_CREATION\" or \"LAST_MONTH\"</td><td>PORTFOLIO_CREATION</td>\n        </tr>\n<tr><td>data.avm.thresholds</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.avm.thresholds[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.avm.thresholds[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>data.avm.thresholds[].value</td><td>number</td><td>Literal Value of AVM</td><td>0.3</td>\n        </tr>\n<tr><td>data.columns</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.columns[]</td><td>string</td><td>Names of Each Column of the Portfolio</td><td>Value</td>\n        </tr>\n<tr><td>data.date_created</td><td>string</td><td>Date when portfolio was created</td><td>2023-01-01T00:00:00Z</td>\n        </tr>\n<tr><td>data.emails</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.emails[]</td><td>string</td><td>Emails Addresses to Which Notifications Should be Sent</td><td>customer@email.com</td>\n        </tr>\n<tr><td>data.lien</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.lien[]</td><td>string</td><td>Set of all Lien Types on Which to Notify. Notification will be generated when property assumes one of the listed liens. Supported Values: \"ARM\", \"ASSUMPTION\", \"BALLOON\", \"CLOSED_END\", \"COMMERCIAL\", \"CONSTRUCTION\", \"CONVENTIONAL\", \"FANNIE_MAE_FREDDIE_MAC\", \"FARMERS_HOME_ADMINISTRATION\", \"FHA\", \"LAND_CONTRACT\", \"MODIFICATION\", \"NEGATIVE_AMORTIZATION\", \"NON_PURCHASE_MONEY\", \"OPEN_END\", \"OTHER\", \"PURCHASE_MONEY\", \"REVERSE\", \"REVOLVING_CREDIT_LINE\", \"SBA\", \"SECOND_TO_COVER_DOWN_PAYMENT\", \"SELLER_TAKE_BACK\", \"STAND_ALONE_FIRST\", \"STAND_ALONE_REFI\", \"STAND_ALONE_SECOND\", \"STATE_VETERANS\", \"UNKNOWN\", \"USDA\", \"VA\"</td><td>FHA</td>\n        </tr>\n<tr><td>data.ltv_thresholds</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.ltv_thresholds[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.ltv_thresholds[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>data.ltv_thresholds[].threshold</td><td>number</td><td>Value of LTV to trigger notification</td><td>0.6</td>\n        </tr>\n<tr><td>data.mls_status</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.mls_status[]</td><td>string</td><td>Set of MLS Status on Which to Notify. Notification will be generated when property assumes one of the listed values. Supported Values: \"EXPIRED\", \"WITHDRAWN\", \"COMING_SOON\", \"CLOSED\", \"PENDING\", \"DELETED\", \"LEASED\", \"SOLD\", \"CANCELLED\", \"CONTINGENT\", \"ACTIVE\"</td><td>ACTIVE</td>\n        </tr>\n<tr><td>data.name</td><td>string</td><td>Name of the Portfolio</td><td>My First Portfolio</td>\n        </tr>\n<tr><td>data.nod</td><td>boolean</td><td>Notice of Default</td><td></td>\n        </tr>\n<tr><td>data.portfolio_id</td><td>string</td><td>Portfolio ID</td><td>a1b2c3d</td>\n        </tr>\n<tr><td>data.propensity_to_list</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.propensity_to_list[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.propensity_to_list[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>data.propensity_to_list[].threshold</td><td>number</td><td>Value of Propensity to List to trigger notification</td><td>95</td>\n        </tr>\n<tr><td>data.propensity_to_refi</td><td>array</td><td></td><td></td>\n        </tr>\n<tr><td>data.propensity_to_refi[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.propensity_to_refi[].operator</td><td>string</td><td>Operator Used to Compute Threshold. Supported values: \"lt\" (Less Than), or \"gt\" (Greater Than)</td><td>lt</td>\n        </tr>\n<tr><td>data.propensity_to_refi[].threshold</td><td>number</td><td>Value of Propensity to Refi to trigger notification</td><td>95</td>\n        </tr>\n<tr><td>data.upload_status</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>data.upload_status.status</td><td>string</td><td>The Status of The Portfolio Upload Job</td><td>NOT_STARTED</td>\n        </tr>\n<tr><td>data.upload_status.file_name</td><td>string</td><td>Name of File Currently Uploading</td><td>GreatPortfolio.csv</td>\n        </tr>\n<tr><td>data.upload_status.latest_error_count</td><td>integer</td><td>Count of Errors Encountered When Uploading This Portfolio</td><td>1</td>\n        </tr>\n<tr><td>data.upload_status.success_count</td><td>integer</td><td>Count of Addresses Successfully Uploaded in This Portfolio</td><td>799</td>\n        </tr>\n<tr><td>data.upload_status.processed_count</td><td>integer</td><td>Count of All Addresses Processed for This Portfolio</td><td>800</td>\n        </tr>\n<tr><td>data.upload_status.total_addresses_in_file</td><td>integer</td><td>Count of All Addresses in Uploaded Portfolio File</td><td>800</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["portfolio-monitor","portfolios",":portfolio_id"],"host":["https://api.housecanary.com"],"query":[],"variable":[{"id":"8d414019-1176-472c-97e3-213565537d19","description":{"content":"<p>Portfolio ID</p>\n","type":"text/plain"},"type":"any","value":"3","key":"portfolio_id"}]}},"response":[{"id":"5f494c78-cd94-4d0f-b731-b8b7a535ed1f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"asset_count\": 100,\n    \"avm\": {\n      \"relative_to\": \"PORTFOLIO_CREATION\",\n      \"thresholds\": [\n        {\n          \"operator\": \"lt\",\n          \"value\": 0.3\n        }\n      ]\n    },\n    \"columns\": [\n      \"Value\",\n      \"Value\"\n    ],\n    \"date_created\": \"2023-01-01T00:00:00Z\",\n    \"emails\": [\n      \"customer@email.com\"\n    ],\n    \"lien\": [\n      \"FHA\"\n    ],\n    \"ltv_thresholds\": [\n      {\n        \"operator\": \"lt\",\n        \"threshold\": 0.6\n      }\n    ],\n    \"mls_status\": [\n      \"ACTIVE\"\n    ],\n    \"name\": \"My First Portfolio\",\n    \"nod\": false,\n    \"portfolio_id\": \"a1b2c3d\",\n    \"propensity_to_list\": [\n      {\n        \"operator\": \"lt\",\n        \"threshold\": 95\n      }\n    ],\n    \"propensity_to_refi\": [\n      {\n        \"operator\": \"lt\",\n        \"threshold\": 95\n      }\n    ],\n    \"upload_status\": {\n      \"status\": \"NOT_STARTED\",\n      \"file_name\": \"GreatPortfolio.csv\",\n      \"latest_error_count\": 1,\n      \"success_count\": 799,\n      \"processed_count\": 800,\n      \"total_addresses_in_file\": 800\n    }\n  }\n}"},{"id":"9f24b51d-8167-4501-97b4-b462d1447bd0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1c3303a4-a605-4f32-a9bc-366f1f423776","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"eb265fcc-10d1-4679-851a-b24124bcc1b8","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"c7a9a949-fdf8-4f0d-afdf-9f849812d5bb"},{"name":"Delete an entire portfolio","id":"02355d48-58ee-413f-9a36-af245a37daf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","description":"<p>Delete an entire portfolio   </p>\n<h2 id=\"request-path-params\">Request Path Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>portfolio_id</td><td>number</td><td>Portfolio ID</td><td>3</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["portfolio-monitor","portfolios",":portfolio_id"],"host":["https://api.housecanary.com"],"query":[],"variable":[{"id":"4572b962-b6aa-423d-950c-011b70332ce4","description":{"content":"<p>Portfolio ID</p>\n","type":"text/plain"},"type":"any","value":"3","key":"portfolio_id"}]}},"response":[{"id":"12dddb2b-dcac-4402-a3cd-2b4688306e1a","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"dcd98613-a85f-4686-9539-83814348d00d","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"eacf8884-dab2-42ac-bdf5-6e1882574951","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"2365e973-0c2e-4a93-b831-8284d74b6f33","name":"Rate limit exceeded","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/portfolio-monitor/portfolios/:portfolio_id","host":["https://api.housecanary.com"],"path":["portfolio-monitor","portfolios",":portfolio_id"],"variable":[{"key":"portfolio_id","value":"3","description":"Portfolio ID"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"02355d48-58ee-413f-9a36-af245a37daf9"}],"id":"4c2be71c-df3b-4632-8ce3-8b36b2bb0a5c","_postman_id":"4c2be71c-df3b-4632-8ce3-8b36b2bb0a5c","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Bulk Property Data API","item":[{"name":"Get file download links","id":"d910de93-9f42-4736-b5ac-903f1530f762","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/bulk-property-data/files","description":"<p>Get a list of download links for all bulk property data files available for the current month.   </p>\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>AZ</td><td>string</td><td>Download link for Arizona bulk property data file</td><td>https://example.com/az_file.csv</td>\n        </tr>\n<tr><td>CA</td><td>string</td><td>Download link for California bulk property data file</td><td>https://example.com/ca_file.csv</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["bulk-property-data","files"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"ab48e81e-e88a-4b3a-b9f8-516131a6023b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/bulk-property-data/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"AZ\": \"https://example.com/az_file.csv\",\n  \"CA\": \"https://example.com/ca_file.csv\"\n}"},{"id":"8cb760b4-debd-46a8-81a6-0e477bc5fc53","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/bulk-property-data/files"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"19a559c3-235b-4f7d-8674-718dd5bbb75a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/bulk-property-data/files"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"8f3db896-9ed3-44d8-bb10-48656eda9b0e","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/bulk-property-data/files"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d910de93-9f42-4736-b5ac-903f1530f762"}],"id":"96e9fc61-2157-4caf-bf5c-f3a2b04e88f0","_postman_id":"96e9fc61-2157-4caf-bf5c-f3a2b04e88f0","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Property Explorer API","item":[{"name":"Property Explorer Dynamic Link","id":"f6040858-17f9-47f3-b415-c063c648c27f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/property/pexp_dynamic_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&cobranding=true","description":"<p>Returns a link to an interactive web-based Property Explorer (PEXP) report.  This interactive report includes in-depth assessment of subject property and nearby comparables.  This is the most current version of our legacy Dynamic Link capability and is now powered by our latest functionality and seamlessly integrates with the most current version of Property Explorer.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>A single URL-safe string identifying the address (obtained from HouseCanary)</td><td>1624-E-Dogwood-Ln-Gilbert-AZ-85295</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Building number, street name and unit number</td><td>123 Main St San Francisco CA 94132</td>\n        </tr>\n<tr><td>zipcode</td><td>integer</td><td>5-digit ZIP code</td><td>94132</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number/letter/identifier.</td><td>Apt 1</td>\n        </tr>\n<tr><td>unit_designator</td><td>string</td><td>Unit designator like Apt,Suite etc.</td><td>Apt</td>\n        </tr>\n<tr><td>cobranding</td><td>boolean</td><td>Whether cobranding is enabled for this request.</td><td>true</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>property/pexp_static_link</td><td>object</td><td>Link to the dynamically generated Property Explorer report and response metadata.</td><td></td>\n        </tr>\n<tr><td>property/pexp_static_link.api_code</td><td>integer</td><td>HTTP-like status code indicating result of report generation.</td><td>200</td>\n        </tr>\n<tr><td>property/pexp_static_link.api_code_description</td><td>string</td><td>Human-readable description of the API code.</td><td>ok</td>\n        </tr>\n<tr><td>property/pexp_static_link.result</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>property/pexp_static_link.result.link</td><td>string</td><td>URL to the shared Property Explorer Report.</td><td>https://solutions.dev.hc.housecanary.net/pexp/shared/5ycCgB84fpR0h7RIjuUUVk</td>\n        </tr>\n<tr><td>address_info</td><td>object</td><td>Detailed metadata about the subject property address.</td><td></td>\n        </tr>\n<tr><td>address_info.address_full</td><td>string</td><td></td><td>856 Badger Gulch Goldendale WA 98620</td>\n        </tr>\n<tr><td>address_info.slug</td><td>string</td><td></td><td>856-Badger-Gulch-Goldendale-WA-98620</td>\n        </tr>\n<tr><td>address_info.address</td><td>string</td><td></td><td>856 Badger Gulch</td>\n        </tr>\n<tr><td>address_info.unit</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.unit_designator</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.zipcode</td><td>string</td><td></td><td>98620</td>\n        </tr>\n<tr><td>address_info.zipcode_plus4</td><td>string</td><td></td><td>2912</td>\n        </tr>\n<tr><td>address_info.block_id</td><td>string</td><td></td><td>530399501031029</td>\n        </tr>\n<tr><td>address_info.blockgroup_id</td><td>string</td><td></td><td>530399501031</td>\n        </tr>\n<tr><td>address_info.county_fips</td><td>string</td><td></td><td>53039</td>\n        </tr>\n<tr><td>address_info.metrodiv</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.msa</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.city</td><td>string</td><td></td><td>Goldendale</td>\n        </tr>\n<tr><td>address_info.state</td><td>string</td><td></td><td>WA</td>\n        </tr>\n<tr><td>address_info.geo_precision</td><td>string</td><td></td><td>rooftop</td>\n        </tr>\n<tr><td>address_info.lat</td><td>number</td><td></td><td>45.8510704</td>\n        </tr>\n<tr><td>address_info.lng</td><td>number</td><td></td><td>-120.6460266</td>\n        </tr>\n<tr><td>address_info.is_complete</td><td>boolean</td><td></td><td>true</td>\n        </tr>\n<tr><td>address_info.status</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.status.match</td><td>boolean</td><td></td><td>true</td>\n        </tr>\n<tr><td>address_info.status.changes</td><td>array</td><td></td><td><pre>[]</pre></td>\n        </tr>\n<tr><td>address_info.status.changes[]</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.status.details</td><td>array</td><td></td><td><pre>[]</pre></td>\n        </tr>\n<tr><td>address_info.status.details[]</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.status.errors</td><td>array</td><td></td><td><pre>[]</pre></td>\n        </tr>\n<tr><td>address_info.status.errors[]</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.streetAddress</td><td>string</td><td></td><td>856 Badger Gulch</td>\n        </tr>\n<tr><td>address_info.request_item.zipcode</td><td>string</td><td></td><td>98620</td>\n        </tr>\n<tr><td>address_info.request_item.slug</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.unit</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.unitDesignator</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.addressID</td><td>number</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.listingID</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.hcMlsID</td><td>number</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.listingEntityID</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.clientID</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.effectiveDate</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.async</td><td>boolean</td><td></td><td>true</td>\n        </tr>\n<tr><td>address_info.request_item.cobranding</td><td>boolean</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.reportConfigSlug</td><td>string</td><td></td><td>pexp-static</td>\n        </tr>\n<tr><td>address_info.request_item.reportName</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.appraisalSubjectValue</td><td>string</td><td></td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","pexp_dynamic_link"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>A single URL-safe string identifying the address (obtained from HouseCanary)</p>\n","type":"text/plain"},"key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":{"content":"<p>Building number, street name and unit number</p>\n","type":"text/plain"},"key":"address","value":"123 Main St San Francisco CA 94132"},{"description":{"content":"<p>5-digit ZIP code</p>\n","type":"text/plain"},"key":"zipcode","value":"94132"},{"description":{"content":"<p>Unit number/letter/identifier.</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>Unit designator like Apt,Suite etc.</p>\n","type":"text/plain"},"key":"unit_designator","value":"Apt"},{"description":{"content":"<p>Whether cobranding is enabled for this request.</p>\n","type":"text/plain"},"key":"cobranding","value":"true"}],"variable":[]}},"response":[{"id":"eb461e72-7e37-4802-9548-5a423c55c216","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/pexp_dynamic_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&cobranding=true","host":["https://api.housecanary.com"],"path":["v3","property","pexp_dynamic_link"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Unit number/letter/identifier.","key":"unit","value":"Apt 1"},{"description":"Unit designator like Apt,Suite etc.","key":"unit_designator","value":"Apt"},{"description":"Whether cobranding is enabled for this request.","key":"cobranding","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"property/pexp_static_link\": {\n    \"api_code\": 200,\n    \"api_code_description\": \"ok\",\n    \"result\": {\n      \"link\": \"https://solutions.dev.hc.housecanary.net/pexp/shared/5ycCgB84fpR0h7RIjuUUVk\"\n    }\n  },\n  \"address_info\": {\n    \"address_full\": \"856 Badger Gulch Goldendale WA 98620\",\n    \"slug\": \"856-Badger-Gulch-Goldendale-WA-98620\",\n    \"address\": \"856 Badger Gulch\",\n    \"unit\": \"string\",\n    \"unit_designator\": \"string\",\n    \"zipcode\": \"98620\",\n    \"zipcode_plus4\": \"2912\",\n    \"block_id\": \"530399501031029\",\n    \"blockgroup_id\": \"530399501031\",\n    \"county_fips\": \"53039\",\n    \"metrodiv\": \"string\",\n    \"msa\": \"\",\n    \"city\": \"Goldendale\",\n    \"state\": \"WA\",\n    \"geo_precision\": \"rooftop\",\n    \"lat\": 45.8510704,\n    \"lng\": -120.6460266,\n    \"is_complete\": true,\n    \"status\": {\n      \"match\": true\n    },\n    \"request_item\": {\n      \"streetAddress\": \"856 Badger Gulch\",\n      \"zipcode\": \"98620\",\n      \"slug\": \"string\",\n      \"unit\": \"string\",\n      \"unitDesignator\": \"string\",\n      \"addressID\": 6615.181213040211,\n      \"listingID\": \"string\",\n      \"hcMlsID\": 2127.7656263491385,\n      \"listingEntityID\": \"string\",\n      \"clientID\": \"string\",\n      \"effectiveDate\": \"1962-09-23\",\n      \"async\": true,\n      \"cobranding\": false,\n      \"reportConfigSlug\": \"pexp-static\",\n      \"reportName\": \"string\",\n      \"appraisalSubjectValue\": \"string\"\n    }\n  }\n}"},{"id":"d877e9cf-e344-4030-a0af-a887ddedf2c8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/pexp_dynamic_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&cobranding=true","host":["https://api.housecanary.com"],"path":["v3","property","pexp_dynamic_link"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Unit number/letter/identifier.","key":"unit","value":"Apt 1"},{"description":"Unit designator like Apt,Suite etc.","key":"unit_designator","value":"Apt"},{"description":"Whether cobranding is enabled for this request.","key":"cobranding","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"1d4a51fb-16a7-4eb6-9edb-c191ae761458","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/pexp_dynamic_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&cobranding=true","host":["https://api.housecanary.com"],"path":["v3","property","pexp_dynamic_link"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Unit number/letter/identifier.","key":"unit","value":"Apt 1"},{"description":"Unit designator like Apt,Suite etc.","key":"unit_designator","value":"Apt"},{"description":"Whether cobranding is enabled for this request.","key":"cobranding","value":"true"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"ccbd92aa-7780-42af-944a-2cdeaf54e269","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/pexp_dynamic_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&cobranding=true","host":["https://api.housecanary.com"],"path":["v3","property","pexp_dynamic_link"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Unit number/letter/identifier.","key":"unit","value":"Apt 1"},{"description":"Unit designator like Apt,Suite etc.","key":"unit_designator","value":"Apt"},{"description":"Whether cobranding is enabled for this request.","key":"cobranding","value":"true"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"f6040858-17f9-47f3-b415-c063c648c27f"},{"name":"Property Explorer Dynamic Link ","id":"d70c24c6-353c-4edf-b604-6be5e20a8d5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_dynamic_link","description":"<p>Returns a link to an interactive web-based Property Explorer (PEXP) report.  This interactive report includes in-depth assessment of subject property and nearby comparables.  This is the most current version of our legacy Dynamic Link capability and is now powered by our latest functionality and seamlessly integrates with the most current version of Property Explorer.</p>\n<p>Asynchronous bulk workflow: This POST endpoint enqueues generation of multiple interactive PEXP links. The immediate response includes request_created, request_id, jobs, and failed_jobs. Each element in jobs/failed_jobs maps directly to an address you submitted (fields echo your input so you can correlate). Use the returned request_id to poll: GET /v3/jobs/{request_id}/status until all_tasks_are_finished is true. Poll every 2–5 seconds (increase interval for large batches). While polling, inspect task_states for each address (state will transition through PENDING/RECEIVED/STARTED to SUCCESS or FAILURE). When complete, fetch consolidated results via: GET /v3/jobs/{request_id}/download. The download response enumerates each task with its final download_link (for dynamic link requests this will be the shareable interactive report URL) and status. Any per-address failures will surface an error_message either in failed_jobs from the initial response, the status endpoint error field, or the download listing with status=FAILURE.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].street_address</td><td>string</td><td>Full street address including street number and name.</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Street portion of the address (redundant with street_address in some contexts).</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit ZIP code.</td><td>12345</td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>URL-safe slug version of the address.</td><td>123-main-st</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Optional unit identifier (e.g., \"Apt 1\").</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].unit_designator</td><td>string</td><td>Optional designator for the unit (e.g., \"Apt\", \"Unit\", \"Suite\").</td><td>Apt</td>\n        </tr>\n<tr><td>[].cobranding</td><td>boolean</td><td>Whether cobranding is enabled for this request.</td><td>true</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>request_created</td><td>string</td><td>Timestamp when the bulk request was created.</td><td>2025-06-04T12:00:00Z</td>\n        </tr>\n<tr><td>request_id</td><td>string</td><td>Unique identifier for the bulk request.</td><td>req_abc123</td>\n        </tr>\n<tr><td>jobs</td><td>array</td><td>List of successful job responses.</td><td></td>\n        </tr>\n<tr><td>jobs[]</td><td>object</td><td>Job-level response containing link data or an error message.</td><td></td>\n        </tr>\n<tr><td>jobs[].street_address</td><td>string</td><td>Full street address (preferred key).</td><td>123 Main St</td>\n        </tr>\n<tr><td>jobs[].address</td><td>string</td><td>Legacy key for address (same as street_address).</td><td>123 Main St</td>\n        </tr>\n<tr><td>jobs[].zipcode</td><td>string</td><td>5-digit ZIP code.</td><td>12345</td>\n        </tr>\n<tr><td>jobs[].slug</td><td>string</td><td>URL-safe version of the address.</td><td>123-main-st</td>\n        </tr>\n<tr><td>jobs[].unit</td><td>string</td><td>Apartment, suite, or unit identifier.</td><td>Apt 2B</td>\n        </tr>\n<tr><td>jobs[].unit_designator</td><td>string</td><td>Designator for the unit (e.g., Apt, Unit, Ste).</td><td>Apt</td>\n        </tr>\n<tr><td>jobs[].cobranding</td><td>boolean</td><td>Indicates whether the request should use cobranding.</td><td>true</td>\n        </tr>\n<tr><td>jobs[].format</td><td>string</td><td>Output format for the generated report (e.g., PDF, link).</td><td>link</td>\n        </tr>\n<tr><td>jobs[].id</td><td>string</td><td>Client-specified identifier for the job.</td><td>job_456</td>\n        </tr>\n<tr><td>jobs[].report_id</td><td>integer</td><td>Internal report identifier.</td><td>12345</td>\n        </tr>\n<tr><td>jobs[].data_link</td><td>string</td><td>Link to the generated report.</td><td>https://example.com/report/abc123</td>\n        </tr>\n<tr><td>jobs[].error_message</td><td>string</td><td>Error message if the job failed.</td><td>Invalid address provided</td>\n        </tr>\n<tr><td>failed_jobs</td><td>array</td><td>List of jobs that failed to process.</td><td></td>\n        </tr>\n<tr><td>failed_jobs[]</td><td>object</td><td>Job-level response containing link data or an error message.</td><td></td>\n        </tr>\n<tr><td>failed_jobs[].street_address</td><td>string</td><td>Full street address (preferred key).</td><td>123 Main St</td>\n        </tr>\n<tr><td>failed_jobs[].address</td><td>string</td><td>Legacy key for address (same as street_address).</td><td>123 Main St</td>\n        </tr>\n<tr><td>failed_jobs[].zipcode</td><td>string</td><td>5-digit ZIP code.</td><td>12345</td>\n        </tr>\n<tr><td>failed_jobs[].slug</td><td>string</td><td>URL-safe version of the address.</td><td>123-main-st</td>\n        </tr>\n<tr><td>failed_jobs[].unit</td><td>string</td><td>Apartment, suite, or unit identifier.</td><td>Apt 2B</td>\n        </tr>\n<tr><td>failed_jobs[].unit_designator</td><td>string</td><td>Designator for the unit (e.g., Apt, Unit, Ste).</td><td>Apt</td>\n        </tr>\n<tr><td>failed_jobs[].cobranding</td><td>boolean</td><td>Indicates whether the request should use cobranding.</td><td>true</td>\n        </tr>\n<tr><td>failed_jobs[].format</td><td>string</td><td>Output format for the generated report (e.g., PDF, link).</td><td>link</td>\n        </tr>\n<tr><td>failed_jobs[].id</td><td>string</td><td>Client-specified identifier for the job.</td><td>job_456</td>\n        </tr>\n<tr><td>failed_jobs[].report_id</td><td>integer</td><td>Internal report identifier.</td><td>12345</td>\n        </tr>\n<tr><td>failed_jobs[].data_link</td><td>string</td><td>Link to the generated report.</td><td>https://example.com/report/abc123</td>\n        </tr>\n<tr><td>failed_jobs[].error_message</td><td>string</td><td>Error message if the job failed.</td><td>Invalid address provided</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","pexp_dynamic_link"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"81c6acc0-af20-45d5-b9d0-03ebe4dd4188","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_dynamic_link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"request_created\": \"2025-06-04T12:00:00Z\",\n  \"request_id\": \"req_abc123\",\n  \"jobs\": [\n    {\n      \"format\": \"link\",\n      \"id\": \"job_456\",\n      \"street_address\": \"123 Main St\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"12345\",\n      \"slug\": \"123-main-st\",\n      \"unit\": \"Apt 2B\",\n      \"unit_designator\": \"Apt\",\n      \"cobranding\": true,\n      \"report_id\": 12345,\n      \"data_link\": \"https://example.com/report/abc123\",\n      \"error_message\": \"Invalid address provided\"\n    },\n    {\n      \"format\": \"link\",\n      \"id\": \"job_456\",\n      \"street_address\": \"123 Main St\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"12345\",\n      \"slug\": \"123-main-st\",\n      \"unit\": \"Apt 2B\",\n      \"unit_designator\": \"Apt\",\n      \"cobranding\": true,\n      \"report_id\": 12345,\n      \"data_link\": \"https://example.com/report/abc123\",\n      \"error_message\": \"Invalid address provided\"\n    }\n  ],\n  \"failed_jobs\": [\n    {\n      \"format\": \"link\",\n      \"id\": \"job_456\",\n      \"street_address\": \"123 Main St\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"12345\",\n      \"slug\": \"123-main-st\",\n      \"unit\": \"Apt 2B\",\n      \"unit_designator\": \"Apt\",\n      \"cobranding\": true,\n      \"report_id\": 12345,\n      \"data_link\": \"https://example.com/report/abc123\",\n      \"error_message\": \"Invalid address provided\"\n    },\n    {\n      \"format\": \"link\",\n      \"id\": \"job_456\",\n      \"street_address\": \"123 Main St\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"12345\",\n      \"slug\": \"123-main-st\",\n      \"unit\": \"Apt 2B\",\n      \"unit_designator\": \"Apt\",\n      \"cobranding\": true,\n      \"report_id\": 12345,\n      \"data_link\": \"https://example.com/report/abc123\",\n      \"error_message\": \"Invalid address provided\"\n    }\n  ]\n}"},{"id":"e19cc4a0-fe06-4390-92a8-a1205e534a47","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_dynamic_link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"218aef88-ebe3-4983-b7c9-c6f8e32ec935","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_dynamic_link"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"67cb47c9-55b5-4aa4-9c1f-6d6ecf04a407","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_dynamic_link"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"d70c24c6-353c-4edf-b604-6be5e20a8d5f"},{"name":"Property Explorer Static Link","id":"a94a53c6-a39c-45d5-bd81-84d526871c96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/property/pexp_static_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&allowLimitedReports=false&enforceStrictGeoPrecision=true","description":"<p>Returns a link to a PEXP Report PDF.  The PEXP report contains an in-depth assessment of subject property and nearby comparables.  This is the most current version of our legacy Static Link capability and is now powered by our latest functionality and current PEXP reports.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-query-params\">Request Query Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>slug</td><td>string</td><td>A single URL-safe string identifying the address (obtained from HouseCanary)</td><td>1624-E-Dogwood-Ln-Gilbert-AZ-85295</td>\n        </tr>\n<tr><td>address</td><td>string</td><td>Building number, street name and unit number</td><td>123 Main St San Francisco CA 94132</td>\n        </tr>\n<tr><td>zipcode</td><td>integer</td><td>5-digit ZIP code</td><td>94132</td>\n        </tr>\n<tr><td>unit</td><td>string</td><td>Unit number/letter/identifier.</td><td>Apt 1</td>\n        </tr>\n<tr><td>unit_designator</td><td>string</td><td>Unit designator like Apt,Suite etc.</td><td>Apt</td>\n        </tr>\n<tr><td>allowLimitedReports</td><td>boolean</td><td>Allow reports to continue that have a limiting factor such as having limited MLS Coverage for the subject property or missing some location data.</td><td></td>\n        </tr>\n<tr><td>enforceStrictGeoPrecision</td><td>boolean</td><td>Enforce strict geographical precision requirements for report generation. If disabled any geo precision will be accepted including zipcode. If enabled only rooftop or parcel will be accepted. This may result in less accurate comparable properties. </td><td></td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>property/pexp_dynamic_link</td><td>object</td><td>Link to the dynamically generated Property Explorer report and response metadata.</td><td></td>\n        </tr>\n<tr><td>property/pexp_dynamic_link.api_code</td><td>integer</td><td>HTTP-like status code indicating result of report generation.</td><td>200</td>\n        </tr>\n<tr><td>property/pexp_dynamic_link.api_code_description</td><td>string</td><td>Human-readable description of the API code.</td><td>ok</td>\n        </tr>\n<tr><td>property/pexp_dynamic_link.result</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>property/pexp_dynamic_link.result.link</td><td>string</td><td>URL to the static Property Explorer Report PDF.</td><td>https://solutions.dev.hc.housecanary.net/pexp/shared/5ycCgB84fpR0h7RIjuUUVk</td>\n        </tr>\n<tr><td>address_info</td><td>object</td><td>Detailed metadata about the subject property address.</td><td></td>\n        </tr>\n<tr><td>address_info.address_full</td><td>string</td><td></td><td>856 Badger Gulch Goldendale WA 98620</td>\n        </tr>\n<tr><td>address_info.slug</td><td>string</td><td></td><td>856-Badger-Gulch-Goldendale-WA-98620</td>\n        </tr>\n<tr><td>address_info.address</td><td>string</td><td></td><td>856 Badger Gulch</td>\n        </tr>\n<tr><td>address_info.unit</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.unit_designator</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.zipcode</td><td>string</td><td></td><td>98620</td>\n        </tr>\n<tr><td>address_info.zipcode_plus4</td><td>string</td><td></td><td>2912</td>\n        </tr>\n<tr><td>address_info.block_id</td><td>string</td><td></td><td>530399501031029</td>\n        </tr>\n<tr><td>address_info.blockgroup_id</td><td>string</td><td></td><td>530399501031</td>\n        </tr>\n<tr><td>address_info.county_fips</td><td>string</td><td></td><td>53039</td>\n        </tr>\n<tr><td>address_info.metrodiv</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.msa</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.city</td><td>string</td><td></td><td>Goldendale</td>\n        </tr>\n<tr><td>address_info.state</td><td>string</td><td></td><td>WA</td>\n        </tr>\n<tr><td>address_info.geo_precision</td><td>string</td><td></td><td>rooftop</td>\n        </tr>\n<tr><td>address_info.lat</td><td>number</td><td></td><td>45.8510704</td>\n        </tr>\n<tr><td>address_info.lng</td><td>number</td><td></td><td>-120.6460266</td>\n        </tr>\n<tr><td>address_info.is_complete</td><td>boolean</td><td></td><td>true</td>\n        </tr>\n<tr><td>address_info.status</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.status.match</td><td>boolean</td><td></td><td>true</td>\n        </tr>\n<tr><td>address_info.status.changes</td><td>array</td><td></td><td><pre>[]</pre></td>\n        </tr>\n<tr><td>address_info.status.changes[]</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.status.details</td><td>array</td><td></td><td><pre>[]</pre></td>\n        </tr>\n<tr><td>address_info.status.details[]</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.status.errors</td><td>array</td><td></td><td><pre>[]</pre></td>\n        </tr>\n<tr><td>address_info.status.errors[]</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.streetAddress</td><td>string</td><td></td><td>856 Badger Gulch</td>\n        </tr>\n<tr><td>address_info.request_item.zipcode</td><td>string</td><td></td><td>98620</td>\n        </tr>\n<tr><td>address_info.request_item.slug</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.unit</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.unitDesignator</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.addressID</td><td>number</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.listingID</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.hcMlsID</td><td>number</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.listingEntityID</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.clientID</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.effectiveDate</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.async</td><td>boolean</td><td></td><td>true</td>\n        </tr>\n<tr><td>address_info.request_item.cobranding</td><td>boolean</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.reportConfigSlug</td><td>string</td><td></td><td>pexp-static</td>\n        </tr>\n<tr><td>address_info.request_item.reportName</td><td>string</td><td></td><td></td>\n        </tr>\n<tr><td>address_info.request_item.appraisalSubjectValue</td><td>string</td><td></td><td></td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","pexp_static_link"],"host":["https://api.housecanary.com"],"query":[{"description":{"content":"<p>A single URL-safe string identifying the address (obtained from HouseCanary)</p>\n","type":"text/plain"},"key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":{"content":"<p>Building number, street name and unit number</p>\n","type":"text/plain"},"key":"address","value":"123 Main St San Francisco CA 94132"},{"description":{"content":"<p>5-digit ZIP code</p>\n","type":"text/plain"},"key":"zipcode","value":"94132"},{"description":{"content":"<p>Unit number/letter/identifier.</p>\n","type":"text/plain"},"key":"unit","value":"Apt 1"},{"description":{"content":"<p>Unit designator like Apt,Suite etc.</p>\n","type":"text/plain"},"key":"unit_designator","value":"Apt"},{"description":{"content":"<p>Allow reports to continue that have a limiting factor such as having limited MLS Coverage for the subject property or missing some location data.</p>\n","type":"text/plain"},"key":"allowLimitedReports","value":"false"},{"description":{"content":"<p>Enforce strict geographical precision requirements for report generation. If disabled any geo precision will be accepted including zipcode. If enabled only rooftop or parcel will be accepted. This may result in less accurate comparable properties. </p>\n","type":"text/plain"},"key":"enforceStrictGeoPrecision","value":"true"}],"variable":[]}},"response":[{"id":"8ea1f294-b3aa-45c8-b282-58eaaa4a54e3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/pexp_static_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&allowLimitedReports=false&enforceStrictGeoPrecision=true","host":["https://api.housecanary.com"],"path":["v3","property","pexp_static_link"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Unit number/letter/identifier.","key":"unit","value":"Apt 1"},{"description":"Unit designator like Apt,Suite etc.","key":"unit_designator","value":"Apt"},{"description":"Allow reports to continue that have a limiting factor such as having limited MLS Coverage for the subject property or missing some location data.","key":"allowLimitedReports","value":"false"},{"description":"Enforce strict geographical precision requirements for report generation. If disabled any geo precision will be accepted including zipcode. If enabled only rooftop or parcel will be accepted. This may result in less accurate comparable properties. ","key":"enforceStrictGeoPrecision","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"property/pexp_dynamic_link\": {\n    \"api_code\": 200,\n    \"api_code_description\": \"ok\",\n    \"result\": {\n      \"link\": \"https://solutions.dev.hc.housecanary.net/pexp/shared/5ycCgB84fpR0h7RIjuUUVk\"\n    }\n  },\n  \"address_info\": {\n    \"address_full\": \"856 Badger Gulch Goldendale WA 98620\",\n    \"slug\": \"856-Badger-Gulch-Goldendale-WA-98620\",\n    \"address\": \"856 Badger Gulch\",\n    \"unit\": \"string\",\n    \"unit_designator\": \"string\",\n    \"zipcode\": \"98620\",\n    \"zipcode_plus4\": \"2912\",\n    \"block_id\": \"530399501031029\",\n    \"blockgroup_id\": \"530399501031\",\n    \"county_fips\": \"53039\",\n    \"metrodiv\": \"string\",\n    \"msa\": \"\",\n    \"city\": \"Goldendale\",\n    \"state\": \"WA\",\n    \"geo_precision\": \"rooftop\",\n    \"lat\": 45.8510704,\n    \"lng\": -120.6460266,\n    \"is_complete\": true,\n    \"status\": {\n      \"match\": true\n    },\n    \"request_item\": {\n      \"streetAddress\": \"856 Badger Gulch\",\n      \"zipcode\": \"98620\",\n      \"slug\": \"string\",\n      \"unit\": \"string\",\n      \"unitDesignator\": \"string\",\n      \"addressID\": 4319.418601503984,\n      \"listingID\": \"string\",\n      \"hcMlsID\": 6378.891303824441,\n      \"listingEntityID\": \"string\",\n      \"clientID\": \"string\",\n      \"effectiveDate\": \"1947-06-18\",\n      \"async\": true,\n      \"cobranding\": false,\n      \"reportConfigSlug\": \"pexp-static\",\n      \"reportName\": \"string\",\n      \"appraisalSubjectValue\": \"string\"\n    }\n  }\n}"},{"id":"d52b3066-8366-4d71-83e1-ba4c0f084870","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/pexp_static_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&allowLimitedReports=false&enforceStrictGeoPrecision=true","host":["https://api.housecanary.com"],"path":["v3","property","pexp_static_link"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Unit number/letter/identifier.","key":"unit","value":"Apt 1"},{"description":"Unit designator like Apt,Suite etc.","key":"unit_designator","value":"Apt"},{"description":"Allow reports to continue that have a limiting factor such as having limited MLS Coverage for the subject property or missing some location data.","key":"allowLimitedReports","value":"false"},{"description":"Enforce strict geographical precision requirements for report generation. If disabled any geo precision will be accepted including zipcode. If enabled only rooftop or parcel will be accepted. This may result in less accurate comparable properties. ","key":"enforceStrictGeoPrecision","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"4546c69e-6616-4349-bb20-6d6a79299ae4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/pexp_static_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&allowLimitedReports=false&enforceStrictGeoPrecision=true","host":["https://api.housecanary.com"],"path":["v3","property","pexp_static_link"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Unit number/letter/identifier.","key":"unit","value":"Apt 1"},{"description":"Unit designator like Apt,Suite etc.","key":"unit_designator","value":"Apt"},{"description":"Allow reports to continue that have a limiting factor such as having limited MLS Coverage for the subject property or missing some location data.","key":"allowLimitedReports","value":"false"},{"description":"Enforce strict geographical precision requirements for report generation. If disabled any geo precision will be accepted including zipcode. If enabled only rooftop or parcel will be accepted. This may result in less accurate comparable properties. ","key":"enforceStrictGeoPrecision","value":"true"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"d57b4bd8-5b3f-4f5e-a75e-25cf850e0858","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/property/pexp_static_link?slug=1624-E-Dogwood-Ln-Gilbert-AZ-85295&address=123 Main St San Francisco CA 94132&zipcode=94132&unit=Apt 1&unit_designator=Apt&allowLimitedReports=false&enforceStrictGeoPrecision=true","host":["https://api.housecanary.com"],"path":["v3","property","pexp_static_link"],"query":[{"description":"A single URL-safe string identifying the address (obtained from HouseCanary)","key":"slug","value":"1624-E-Dogwood-Ln-Gilbert-AZ-85295"},{"description":"Building number, street name and unit number","key":"address","value":"123 Main St San Francisco CA 94132"},{"description":"5-digit ZIP code","key":"zipcode","value":"94132"},{"description":"Unit number/letter/identifier.","key":"unit","value":"Apt 1"},{"description":"Unit designator like Apt,Suite etc.","key":"unit_designator","value":"Apt"},{"description":"Allow reports to continue that have a limiting factor such as having limited MLS Coverage for the subject property or missing some location data.","key":"allowLimitedReports","value":"false"},{"description":"Enforce strict geographical precision requirements for report generation. If disabled any geo precision will be accepted including zipcode. If enabled only rooftop or parcel will be accepted. This may result in less accurate comparable properties. ","key":"enforceStrictGeoPrecision","value":"true"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"a94a53c6-a39c-45d5-bd81-84d526871c96"},{"name":"Property Explorer Static Link ","id":"efabcfa4-81a0-40bb-988d-90e706639b5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_static_link","description":"<p>Returns a link to a PEXP Report PDF.  The PEXP report contains an in-depth assessment of subject property and nearby comparables.  This is the most current version of our legacy Static Link capability and is now powered by our latest functionality and current PEXP reports.</p>\n<p>Asynchronous bulk workflow: This POST endpoint queues report generation jobs and immediately returns a bulk response containing request_created, request_id, jobs, and failed_jobs (mirroring the bulkLinkResponse structure documented internally). Each element in jobs or failed_jobs corresponds 1:1 with an address you submitted; the address fields (street_address/address, zipcode, unit, unit_designator, slug, cobranding) echo your original input so you can correlate results. The request_id must be used to poll the job status endpoint: GET /v3/jobs/{request_id}/status until all_tasks_are_finished is true. Recommended polling interval: every 2–5 seconds (back off to 10–15 seconds for large batches). When all_tasks_are_finished becomes true, retrieve the final downloadable assets (PDF links) via: GET /v3/jobs/{request_id}/download. The task_states array in the status response lets you distinguish SUCCESS vs FAILURE and task_uuid_to_link_map (and later the download payload) provides the final per-address static PDF links. If a job fails, its error_message will appear in failed_jobs in this initial response and/or the status endpoint error field.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-body-fields\">Request Body Fields</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>[]</td><td>object</td><td></td><td></td>\n        </tr>\n<tr><td>[].street_address</td><td>string</td><td>Full street address including street number and name.</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].address</td><td>string</td><td>Street portion of the address (redundant with street_address in some contexts).</td><td>123 Main St</td>\n        </tr>\n<tr><td>[].zipcode</td><td>string</td><td>5-digit ZIP code.</td><td>12345</td>\n        </tr>\n<tr><td>[].slug</td><td>string</td><td>URL-safe slug version of the address.</td><td>123-main-st</td>\n        </tr>\n<tr><td>[].unit</td><td>string</td><td>Optional unit identifier (e.g., \"Apt 1\").</td><td>Apt 1</td>\n        </tr>\n<tr><td>[].unit_designator</td><td>string</td><td>Optional designator for the unit (e.g., \"Apt\", \"Unit\", \"Suite\").</td><td>Apt</td>\n        </tr>\n<tr><td>[].cobranding</td><td>boolean</td><td>Whether cobranding is enabled for this request.</td><td>true</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>request_created</td><td>string</td><td>Timestamp when the bulk request was created.</td><td>2025-06-04T12:00:00Z</td>\n        </tr>\n<tr><td>request_id</td><td>string</td><td>Unique identifier for the bulk request.</td><td>req_abc123</td>\n        </tr>\n<tr><td>jobs</td><td>array</td><td>List of successful job responses.</td><td></td>\n        </tr>\n<tr><td>jobs[]</td><td>object</td><td>Job-level response containing link to job or an error message.</td><td></td>\n        </tr>\n<tr><td>jobs[].street_address</td><td>string</td><td>Full street address (preferred key).</td><td>123 Main St</td>\n        </tr>\n<tr><td>jobs[].address</td><td>string</td><td>Legacy key for address (same as street_address).</td><td>123 Main St</td>\n        </tr>\n<tr><td>jobs[].zipcode</td><td>string</td><td>5-digit ZIP code.</td><td>12345</td>\n        </tr>\n<tr><td>jobs[].slug</td><td>string</td><td>URL-safe version of the address.</td><td>123-main-st</td>\n        </tr>\n<tr><td>jobs[].unit</td><td>string</td><td>Apartment, suite, or unit identifier.</td><td>Apt 2B</td>\n        </tr>\n<tr><td>jobs[].unit_designator</td><td>string</td><td>Designator for the unit (e.g., Apt, Unit, Ste).</td><td>Apt</td>\n        </tr>\n<tr><td>jobs[].cobranding</td><td>boolean</td><td>Indicates whether the request should use cobranding.</td><td>true</td>\n        </tr>\n<tr><td>jobs[].format</td><td>string</td><td>Output format for the generated report (e.g., PDF, link).</td><td>link</td>\n        </tr>\n<tr><td>jobs[].id</td><td>string</td><td>Client-specified identifier for the job.</td><td>job_456</td>\n        </tr>\n<tr><td>jobs[].report_id</td><td>integer</td><td>Internal report identifier.</td><td>12345</td>\n        </tr>\n<tr><td>jobs[].data_link</td><td>string</td><td>Link to job where you can fetch job data.</td><td>https://api.housecanary.net/report-api/jobs/static/00000000-0000-0000-0002-784f00000000</td>\n        </tr>\n<tr><td>jobs[].error_message</td><td>string</td><td>Error message if the job failed.</td><td>Invalid address provided</td>\n        </tr>\n<tr><td>failed_jobs</td><td>array</td><td>List of jobs that failed to process.</td><td></td>\n        </tr>\n<tr><td>failed_jobs[]</td><td>object</td><td>Job-level response containing link data or an error message.</td><td></td>\n        </tr>\n<tr><td>failed_jobs[].street_address</td><td>string</td><td>Full street address (preferred key).</td><td>123 Main St</td>\n        </tr>\n<tr><td>failed_jobs[].address</td><td>string</td><td>Legacy key for address (same as street_address).</td><td>123 Main St</td>\n        </tr>\n<tr><td>failed_jobs[].zipcode</td><td>string</td><td>5-digit ZIP code.</td><td>12345</td>\n        </tr>\n<tr><td>failed_jobs[].slug</td><td>string</td><td>URL-safe version of the address.</td><td>123-main-st</td>\n        </tr>\n<tr><td>failed_jobs[].unit</td><td>string</td><td>Apartment, suite, or unit identifier.</td><td>Apt 2B</td>\n        </tr>\n<tr><td>failed_jobs[].unit_designator</td><td>string</td><td>Designator for the unit (e.g., Apt, Unit, Ste).</td><td>Apt</td>\n        </tr>\n<tr><td>failed_jobs[].cobranding</td><td>boolean</td><td>Indicates whether the request should use cobranding.</td><td>true</td>\n        </tr>\n<tr><td>failed_jobs[].format</td><td>string</td><td>Output format for the generated report (e.g., PDF, link).</td><td>link</td>\n        </tr>\n<tr><td>failed_jobs[].id</td><td>string</td><td>Client-specified identifier for the job.</td><td>job_456</td>\n        </tr>\n<tr><td>failed_jobs[].report_id</td><td>integer</td><td>Internal report identifier.</td><td>12345</td>\n        </tr>\n<tr><td>failed_jobs[].data_link</td><td>string</td><td>Link to job where you can fetch job data.</td><td>https://api.housecanary.net/report-api/jobs/static/00000000-0000-0000-0002-784f00000000</td>\n        </tr>\n<tr><td>failed_jobs[].error_message</td><td>string</td><td>Error message if the job failed.</td><td>Invalid address provided</td>\n        </tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","property","pexp_static_link"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"c9e9e903-1a3d-4de1-8d13-cd1738297fd9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_static_link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"request_created\": \"2025-06-04T12:00:00Z\",\n  \"request_id\": \"req_abc123\",\n  \"jobs\": [\n    {\n      \"format\": \"link\",\n      \"id\": \"job_456\",\n      \"street_address\": \"123 Main St\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"12345\",\n      \"slug\": \"123-main-st\",\n      \"unit\": \"Apt 2B\",\n      \"unit_designator\": \"Apt\",\n      \"cobranding\": true,\n      \"report_id\": 12345,\n      \"data_link\": \"https://api.housecanary.net/report-api/jobs/static/00000000-0000-0000-0002-784f00000000\",\n      \"error_message\": \"Invalid address provided\"\n    },\n    {\n      \"format\": \"link\",\n      \"id\": \"job_456\",\n      \"street_address\": \"123 Main St\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"12345\",\n      \"slug\": \"123-main-st\",\n      \"unit\": \"Apt 2B\",\n      \"unit_designator\": \"Apt\",\n      \"cobranding\": true,\n      \"report_id\": 12345,\n      \"data_link\": \"https://api.housecanary.net/report-api/jobs/static/00000000-0000-0000-0002-784f00000000\",\n      \"error_message\": \"Invalid address provided\"\n    }\n  ],\n  \"failed_jobs\": [\n    {\n      \"format\": \"link\",\n      \"id\": \"job_456\",\n      \"street_address\": \"123 Main St\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"12345\",\n      \"slug\": \"123-main-st\",\n      \"unit\": \"Apt 2B\",\n      \"unit_designator\": \"Apt\",\n      \"cobranding\": true,\n      \"report_id\": 12345,\n      \"data_link\": \"https://api.housecanary.net/report-api/jobs/static/00000000-0000-0000-0002-784f00000000\",\n      \"error_message\": \"Invalid address provided\"\n    },\n    {\n      \"format\": \"link\",\n      \"id\": \"job_456\",\n      \"street_address\": \"123 Main St\",\n      \"address\": \"123 Main St\",\n      \"zipcode\": \"12345\",\n      \"slug\": \"123-main-st\",\n      \"unit\": \"Apt 2B\",\n      \"unit_designator\": \"Apt\",\n      \"cobranding\": true,\n      \"report_id\": 12345,\n      \"data_link\": \"https://api.housecanary.net/report-api/jobs/static/00000000-0000-0000-0002-784f00000000\",\n      \"error_message\": \"Invalid address provided\"\n    }\n  ]\n}"},{"id":"dce352db-3660-41d4-acee-8f25ecc4e10d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_static_link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"9913a59e-4e79-4260-91f5-26931dfbce15","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_static_link"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"4b40e0ad-ef28-4b6e-961e-6a382cc453a1","name":"Rate limit exceeded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  },\n  {\n    \"street_address\": \"123 Main St\",\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\",\n    \"slug\": \"123-main-st\",\n    \"unit\": \"Apt 1\",\n    \"unit_designator\": \"Apt\",\n    \"cobranding\": true\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.housecanary.com/v3/property/pexp_static_link"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"efabcfa4-81a0-40bb-988d-90e706639b5a"},{"name":"Property Explorer Bulk Job Status","id":"ff5bcd1c-1da7-496d-a704-9e6a827d1b5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/jobs/:request_id/status","description":"<p>Check the status of a property explorer bulk job request. This endpoint is meant to be polled to monitor the progress of jobs created by the PEXP static or dynamic link batch endpoints. The request_id is obtained from the POST requests to the pexp_static_link or pexp_dynamic_link endpoints.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-path-params\">Request Path Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>request_id</td><td>string</td><td>The unique identifier for the bulk request obtained from the POST pexp endpoints</td><td>b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>request_id</td><td>string</td><td>The unique identifier for the bulk request</td><td>b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2</td>\n        <td></td></tr>\n<tr><td>all_tasks_are_finished</td><td>boolean</td><td>Indicates whether all tasks in this job are finished (either successfully or failed)</td><td>true</td>\n        <td></td></tr>\n<tr><td>task_states</td><td>array</td><td>Array of individual task states, each correlating to an individual address request</td><td></td>\n        <td></td></tr>\n<tr><td>task_states[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>task_states[].uuid</td><td>string</td><td>Unique identifier for the individual task</td><td>00000000-0000-0000-0003-631700000000</td>\n        <td></td></tr>\n<tr><td>task_states[].name</td><td>string</td><td>Name of the task type</td><td>bulk_pexp_static_link_task</td>\n        <td></td></tr>\n<tr><td>task_states[].state</td><td>string</td><td>Current state of the task. PENDING: initial state, RECEIVED: received by worker, STARTED: worker started processing, RETRY: failed task scheduled for retry, SUCCESS: processed successfully, FAILURE: processing failed</td><td>SUCCESS</td>\n        <td>[PENDING, RECEIVED, STARTED, RETRY, SUCCESS, FAILURE]</td></tr>\n<tr><td>task_states[].error</td><td>string</td><td>Error message if the task failed, empty string if no error</td><td></td>\n        <td></td></tr>\n<tr><td>task_uuid_to_link_map</td><td>object</td><td>Map of task UUIDs to their generated download links</td><td><pre>{\n  \"00000000-0000-0000-0003-631700000000\": \"https://download-links.dev.hc.housecanary.net/dl/HQQLSTuOVZHi0G2Umiwa9A/221975/170-King-St-Unit-618-San-Francisco-CA-94107.pdf\",\n  \"00000000-0000-0000-0003-631800000000\": \"https://download-links.dev.hc.housecanary.net/dl/ZmpJHQO5Sb37sr7EJTM00w/221976/1070-Post-St-Apt-4-San-Francisco-CA-94109.pdf\"\n}</pre></td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","jobs",":request_id","status"],"host":["https://api.housecanary.com"],"query":[],"variable":[{"id":"2d1f50fc-0c35-4b15-83c4-98470c16c57a","description":{"content":"<p>The unique identifier for the bulk request obtained from the POST pexp endpoints</p>\n","type":"text/plain"},"type":"any","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","key":"request_id"}]}},"response":[{"id":"f0b24eed-6bfb-4b16-b1f4-c523f3e11123","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/jobs/:request_id/status","host":["https://api.housecanary.com"],"path":["v3","jobs",":request_id","status"],"variable":[{"key":"request_id","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","description":"The unique identifier for the bulk request obtained from the POST pexp endpoints"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"request_id\": \"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2\",\n  \"all_tasks_are_finished\": true,\n  \"task_states\": [\n    {\n      \"uuid\": \"00000000-0000-0000-0003-631700000000\",\n      \"name\": \"bulk_pexp_static_link_task\",\n      \"state\": \"SUCCESS\",\n      \"error\": \"\"\n    },\n    {\n      \"uuid\": \"00000000-0000-0000-0003-631700000000\",\n      \"name\": \"bulk_pexp_static_link_task\",\n      \"state\": \"SUCCESS\",\n      \"error\": \"\"\n    }\n  ],\n  \"task_uuid_to_link_map\": {\n    \"00000000-0000-0000-0003-631700000000\": \"https://download-links.dev.hc.housecanary.net/dl/HQQLSTuOVZHi0G2Umiwa9A/221975/170-King-St-Unit-618-San-Francisco-CA-94107.pdf\",\n    \"00000000-0000-0000-0003-631800000000\": \"https://download-links.dev.hc.housecanary.net/dl/ZmpJHQO5Sb37sr7EJTM00w/221976/1070-Post-St-Apt-4-San-Francisco-CA-94109.pdf\"\n  }\n}"},{"id":"ba20108e-6453-4526-a4c3-830e327c1def","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/jobs/:request_id/status","host":["https://api.housecanary.com"],"path":["v3","jobs",":request_id","status"],"variable":[{"key":"request_id","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","description":"The unique identifier for the bulk request obtained from the POST pexp endpoints"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"d03d26e4-ce56-4731-9d83-c65e7da2d8bb","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/jobs/:request_id/status","host":["https://api.housecanary.com"],"path":["v3","jobs",":request_id","status"],"variable":[{"key":"request_id","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","description":"The unique identifier for the bulk request obtained from the POST pexp endpoints"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"e2a69914-22d9-432a-86b1-950439f201f9","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/jobs/:request_id/status","host":["https://api.housecanary.com"],"path":["v3","jobs",":request_id","status"],"variable":[{"key":"request_id","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","description":"The unique identifier for the bulk request obtained from the POST pexp endpoints"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"ff5bcd1c-1da7-496d-a704-9e6a827d1b5b"},{"name":"Property Explorer Bulk Job Download","id":"335192ee-8dea-4ad6-940e-991ec5fe24ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v3/jobs/:request_id/download","description":"<p>Download the results of a completed property explorer bulk job request in a zip file format. This endpoint provides access to all generated links for a bulk job. The request_id is obtained from the POST requests to the pexp_static_link or pexp_dynamic_link endpoints.  </p>\n<p>Pricing Tier: Premium </p>\n<h2 id=\"request-path-params\">Request Path Params</h2>\n<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr>\n<tr><td>request_id</td><td>string</td><td>The unique identifier for the bulk request obtained from the POST pexp endpoints</td><td>b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2</td>\n        </tr>\n</table>\n\n<h2 id=\"response\">Response</h2>\n<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr>\n<tr><td>request_id</td><td>string</td><td>The unique identifier for the bulk request</td><td>b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2</td>\n        <td></td></tr>\n<tr><td>downloads</td><td>array</td><td>Array of download information for each completed task</td><td></td>\n        <td></td></tr>\n<tr><td>downloads[]</td><td>object</td><td></td><td></td>\n        <td></td></tr>\n<tr><td>downloads[].task_uuid</td><td>string</td><td>Unique identifier for the individual task</td><td>00000000-0000-0000-0003-631700000000</td>\n        <td></td></tr>\n<tr><td>downloads[].download_link</td><td>string</td><td>Direct download link for the generated report</td><td>https://download-links.dev.hc.housecanary.net/dl/HQQLSTuOVZHi0G2Umiwa9A/221975/170-King-St-Unit-618-San-Francisco-CA-94107.pdf</td>\n        <td></td></tr>\n<tr><td>downloads[].status</td><td>string</td><td>Status of the individual task</td><td>SUCCESS</td>\n        <td>[SUCCESS, FAILURE]</td></tr>\n<tr><td>downloads[].error_message</td><td>string</td><td>Error message if the task failed</td><td></td>\n        <td></td></tr>\n</table>","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v3","jobs",":request_id","download"],"host":["https://api.housecanary.com"],"query":[],"variable":[{"id":"a21ca6a6-f422-447c-a5e3-899443aa80ac","description":{"content":"<p>The unique identifier for the bulk request obtained from the POST pexp endpoints</p>\n","type":"text/plain"},"type":"any","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","key":"request_id"}]}},"response":[{"id":"913fb75e-6271-4fb4-a7ad-665548662282","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/jobs/:request_id/download","host":["https://api.housecanary.com"],"path":["v3","jobs",":request_id","download"],"variable":[{"key":"request_id","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","description":"The unique identifier for the bulk request obtained from the POST pexp endpoints"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"request_id\": \"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2\",\n  \"downloads\": [\n    {\n      \"task_uuid\": \"00000000-0000-0000-0003-631700000000\",\n      \"download_link\": \"https://download-links.dev.hc.housecanary.net/dl/HQQLSTuOVZHi0G2Umiwa9A/221975/170-King-St-Unit-618-San-Francisco-CA-94107.pdf\",\n      \"status\": \"SUCCESS\",\n      \"error_message\": null\n    },\n    {\n      \"task_uuid\": \"00000000-0000-0000-0003-631700000000\",\n      \"download_link\": \"https://download-links.dev.hc.housecanary.net/dl/HQQLSTuOVZHi0G2Umiwa9A/221975/170-King-St-Unit-618-San-Francisco-CA-94107.pdf\",\n      \"status\": \"SUCCESS\",\n      \"error_message\": null\n    }\n  ]\n}"},{"id":"fc19dc64-272c-4459-b139-213a4ac1f74d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/jobs/:request_id/download","host":["https://api.housecanary.com"],"path":["v3","jobs",":request_id","download"],"variable":[{"key":"request_id","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","description":"The unique identifier for the bulk request obtained from the POST pexp endpoints"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Your request was invalid due to the following reasons: …\"\n}"},{"id":"f77aec26-855e-43d4-bce4-cc9266652892","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/jobs/:request_id/download","host":["https://api.housecanary.com"],"path":["v3","jobs",":request_id","download"],"variable":[{"key":"request_id","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","description":"The unique identifier for the bulk request obtained from the POST pexp endpoints"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The request does not contain required authentication parameters. Please use one of the authentication protocols supported by HouseCanary APIs.\",\n  \"code\": 401\n}"},{"id":"026df2e3-2e56-48ec-9e37-a8cd7673fcb6","name":"Rate limit exceeded","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":{"raw":"https://api.housecanary.com/v3/jobs/:request_id/download","host":["https://api.housecanary.com"],"path":["v3","jobs",":request_id","download"],"variable":[{"key":"request_id","value":"b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2","description":"The unique identifier for the bulk request obtained from the POST pexp endpoints"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Limit","value":"250"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Remaining","value":"0"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Reset","value":"1525462154"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"X-RateLimit-Period","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Too Many Requests\"\n}"}],"_postman_id":"335192ee-8dea-4ad6-940e-991ec5fe24ae"}],"id":"85dcc063-2349-4372-b631-373c277d8096","_postman_id":"85dcc063-2349-4372-b631-373c277d8096","description":"","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}},{"name":"Test Lists","item":[{"name":"Addresses","id":"1815c94e-8ffa-46d1-98bd-191369a8083c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/property/test_addresses","description":"<p>Get test addresses</p>\n","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","property","test_addresses"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"6ce14bdf-2290-44a0-9d58-8391f9d8e045","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/v2/property/test_addresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\"\n  },\n  {\n    \"zipcode\": \"12345\",\n    \"address\": \"123 Main St\"\n  }\n]"}],"_postman_id":"1815c94e-8ffa-46d1-98bd-191369a8083c"},{"name":"Block IDs","id":"7a2433c9-8f6c-4b22-8c42-5fe104a3ea31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/block/test_block_ids","description":"<p>Get test block IDs</p>\n","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","block","test_block_ids"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"d40d78f0-f193-4230-a0cb-102a5508d98b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/v2/block/test_block_ids"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"000000000000001\",\n  \"000000000000002\"\n]"}],"_postman_id":"7a2433c9-8f6c-4b22-8c42-5fe104a3ea31"},{"name":"Blockgroup IDs","id":"7868c084-a2e0-4d82-9907-bfde7dedb7c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/blockgroup/test_blockgroup_ids","description":"<p>Get test blockgroup IDs</p>\n","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","blockgroup","test_blockgroup_ids"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"20a548fd-221b-4493-819d-31b9cf38c6f1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/v2/blockgroup/test_blockgroup_ids"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"000000000000001\",\n  \"000000000000002\"\n]"}],"_postman_id":"7868c084-a2e0-4d82-9907-bfde7dedb7c0"},{"name":"Zipcodes","id":"204fff9a-e591-4692-8b81-43eae1e145ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/zip/test_zipcodes","description":"<p>Get test zipcodes</p>\n","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","zip","test_zipcodes"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"6d7f8e3c-ad3a-4fc4-a700-169f30a04c0c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/v2/zip/test_zipcodes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"00001\",\n  \"00002\"\n]"}],"_postman_id":"204fff9a-e591-4692-8b81-43eae1e145ad"},{"name":"Metrodivs","id":"33105494-1953-4a40-95e6-03397a58afde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/metrodiv/test_metrodivs","description":"<p>Get test metrodivs</p>\n","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","metrodiv","test_metrodivs"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"05a52182-c194-4c37-b5f2-02a8487d27a4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/v2/metrodiv/test_metrodivs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"metrodiv\": \"00001\",\n    \"metrodiv_name\": \"Name of Metrodiv, ST\"\n  },\n  {\n    \"metrodiv\": \"00001\",\n    \"metrodiv_name\": \"Name of Metrodiv, ST\"\n  }\n]"}],"_postman_id":"33105494-1953-4a40-95e6-03397a58afde"},{"name":"Msas","id":"55ad120a-4075-403a-969d-750a1935dd0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/msa/test_msas","description":"<p>Get test msas</p>\n","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","msa","test_msas"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"c8211e57-e1a0-426f-9f09-dd63898a93bc","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/v2/msa/test_msas"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"msa\": \"38060\",\n    \"msa_name\": \"Phoenix-Mesa-Scottsdale, AZ Metropolitan Statistical Area\"\n  },\n  {\n    \"msa\": \"38060\",\n    \"msa_name\": \"Phoenix-Mesa-Scottsdale, AZ Metropolitan Statistical Area\"\n  }\n]"}],"_postman_id":"55ad120a-4075-403a-969d-750a1935dd0f"},{"name":"States","id":"800ecf83-f4aa-4946-be2b-61c22eec0dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.housecanary.com/v2/state/test_states","description":"<p>Get test states</p>\n","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}},"urlObject":{"path":["v2","state","test_states"],"host":["https://api.housecanary.com"],"query":[],"variable":[]}},"response":[{"id":"1428ad5b-9178-4469-a987-a04fc3431b15","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: basic","key":"Authorization","value":"Basic <credentials>"}],"url":"https://api.housecanary.com/v2/state/test_states"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"CA\",\n  \"NY\",\n  \"TX\",\n  \"AZ\",\n  \"KY\"\n]"}],"_postman_id":"800ecf83-f4aa-4946-be2b-61c22eec0dee"}],"id":"0b73d242-7e91-4e5a-b33d-ba31084d4100","description":"<p>The following endpoints produce lists of items that can be used, in conjunction with your test credentials, to make test requests. Any item in the list will return valid data when passed to one of our endpoints.</p>\n<p><strong>Please obtain the real lists of test items from the live endpoints. The example responses shown do not contain valid test items.</strong></p>\n<p><em>Note: These endpoints only support GET requests.</em></p>\n","_postman_id":"0b73d242-7e91-4e5a-b33d-ba31084d4100","auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"},"isInherited":true,"source":{"_postman_id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","id":"a2c754cf-2ee8-42d7-85ae-1054ed2f8ff9","name":"HouseCanary Analytics And Portfolio Monitoring APIs","type":"collection"}}}],"auth":{"type":"basic","basic":{"username":"{{basicAuthUsername}}","password":"{{basicAuthPassword}}"}},"variable":[{"key":"baseUrl","value":"https://api.housecanary.com"}]}