Access real estate listing and sale data by ZIP code and year (2014–2024), derived from local MLS records.
https://91slt7z9vf.execute-api.us-west-1.amazonaws.com/prod
Returns listing and sales data for a specific ZIP code and year.
| Parameter | Type | Required | Description |
|---|---|---|---|
| zip | string | Yes | ZIP code (e.g. 84341) |
| year | string | Yes | 4-digit year (e.g. 2019) |
GET /zip/84341/2019
Host: 91slt7z9vf.execute-api.us-west-1.amazonaws.com
Full URL: https://91slt7z9vf.execute-api.us-west-1.amazonaws.com/prod/zip/84341/2019
200 OK — Returns an array of JSON records:
[
{
"MLS#": 1234567,
"Zip": "84341",
"City": "Logan",
"Sold Date": "2019-05-14",
"List Price": 295000,
"Sold Price": 290000,
"Total Square Feet": 2100,
"Total Bedrooms": 4,
"Total Bathrooms": 3,
"Status": "SOLD",
...
},
...
]
404 Not Found — Returned if the ZIP/year combination doesn't exist.
{ "error": "ZIP/year 84341/2019 not found" }
400 Bad Request — Returned if parameters are missing.
{ "error": "Missing zip or year in path" }
curl https://91slt7z9vf.execute-api.us-west-1.amazonaws.com/prod/zip/84341/2019