0.1.0 (March 8, 2023)
about 2 months ago by ReadMe API
- Introduce new markets
- Introduce price feed stats endpoint
- Better error handling of malformed dates
Introduce new markets
PARCL_ID | BOUNDARY_TYPE | FRIENDLY_NAME | STATE |
---|---|---|---|
2899626 | MSA | Boulder | CO |
2899632 | Micro Area | Breckenridge | CO |
2899664 | MSA | Colorado Springs | CO |
2899700 | MSA | Fort Collins | CO |
2899914 | MSA | Grand Junction | CO |
2899921 | MSA | Greeley | CO |
2900147 | MSA | Montrose | CO |
2900277 | MSA | Pueblo | CO |
2900398 | Micro Area | Steamboat Springs | CO |
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'"
]
}
}
}