Cache County Real Estate API

Access real estate listing and sale data by ZIP code and year (2014–2024), derived from local MLS records.

Base URL

https://91slt7z9vf.execute-api.us-west-1.amazonaws.com/prod

GET /zip/{zip}/{year}

Returns listing and sales data for a specific ZIP code and year.

Path Parameters

ParameterTypeRequiredDescription
zipstringYesZIP code (e.g. 84341)
yearstringYes4-digit year (e.g. 2019)

Example Request

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

Response Format

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" }

Try It from Your Terminal

curl https://91slt7z9vf.execute-api.us-west-1.amazonaws.com/prod/zip/84341/2019

Dataset Coverage