GET
/
v1
/
insights
/
investment-outlook
curl --request GET \
  --url https://api.findloka.com/v1/insights/investment-outlook \
  --header 'Authorization: <authorization>'
{
  "currency": "USD",
  "years": [2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027],
  "predicted_values": [450000, 475000, 510000, 545000, 580000, 615000, 645000, 678000, 712000, 748000]
}

Overview

The Investment Outlook API provides historical property values and future value predictions for a specific address. This endpoint is useful for evaluating the investment potential of a property based on its value trajectory.

To obtain an API key, please contact our sales team.

Authorization

Authorization
string
required

Your API key for authentication

Query Parameters

address
string
required

The full address for which to retrieve investment outlook data

{
  "currency": "USD",
  "years": [2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027],
  "predicted_values": [450000, 475000, 510000, 545000, 580000, 615000, 645000, 678000, 712000, 748000]
}

Notes

  • The response includes:
    • currency: The currency code for the monetary values (e.g., “USD”)
    • years: An array of years, including historical years and future projection years
    • predicted_values: An array of property values corresponding to each year
  • Historical values (past years) are based on market data, while future values are projections
  • The length of the arrays may vary depending on available data
  • Values are typically expressed in the local currency of the property’s location
  • Make sure to URL-encode the address parameter when making requests