0.1.0 (March 8, 2023)

  • Introduce new markets
  • Introduce price feed stats endpoint
  • Better error handling of malformed dates

Introduce new markets

PARCL_IDBOUNDARY_TYPEFRIENDLY_NAMESTATE
2899626MSABoulderCO
2899632Micro AreaBreckenridgeCO
2899664MSAColorado SpringsCO
2899700MSAFort CollinsCO
2899914MSAGrand JunctionCO
2899921MSAGreeleyCO
2900147MSAMontroseCO
2900277MSAPuebloCO
2900398Micro AreaSteamboat SpringsCO

Retrieve price feed stats

To allow for quick retrieval of statistics regarding a price feed, created price_feed_stats
endpoint

`https://api.realestate.parcllabs.com/v1/place/2899840/price_feed_stats

Which returns the following:

{
    "pct_change_1_day": 0.0033,
    "dollar_change_1_day": 0.0,
    "pct_change_7_day": 0.0152,
    "dollar_change_7_day": 2.95,
    "pct_change_30_day": 0.0268,
    "dollar_change_30_day": 6.2,
    "pct_change_60_day": -0.0459,
    "dollar_change_60_day": -10.23,
    "pct_change_90_day": -0.0713,
    "dollar_change_90_day": -18.05,
    "52_wk_h": 251,
    "52_wk_l": 212
}

Better error handling for malformed dates

Return example date format in invalid response:

{
    "code": 422,
    "status": "Unprocessable Entity",
    "errors": {
        "query": {
            "end": [
                "Date format must follow: '01/10/2023'"
            ]
        }
    }
}