RentCast Markets API

The Markets API from RentCast — 1 operation(s) for markets.

OpenAPI Specification

rentcast-markets-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: RentCast Avm Markets API
  version: '1.0'
servers:
- url: https://api.rentcast.io/v1
security:
- sec0: []
tags:
- name: Markets
paths:
  /markets:
    get:
      summary: Market Statistics
      description: Returns aggregate market statistics and listing trends for a single US zip code.
      operationId: market-statistics
      parameters:
      - name: zipCode
        in: query
        description: A valid 5-digit US zip code
        required: true
        schema:
          type: string
          default: '29611'
      - name: dataType
        in: query
        description: The type of aggregate market data to retrieve. Defaults to `"All"` if not provided
        schema:
          type: string
          enum:
          - All
          - Sale
          - Rental
          default: All
      - name: historyRange
        in: query
        description: The time range for historical record entries, in months. Defaults to `12` if not provided
        schema:
          type: integer
          default: 6
          format: int32
      responses:
        '200':
          description: Success
          content:
            application/json:
              examples:
                Success:
                  value:
                    id: '29611'
                    zipCode: '29611'
                    saleData:
                      lastUpdatedDate: '2025-08-26T00:00:00.000Z'
                      averagePrice: 356598
                      medianPrice: 295000
                      minPrice: 8899
                      maxPrice: 2530000
                      averagePricePerSquareFoot: 203.45
                      medianPricePerSquareFoot: 188.61
                      minPricePerSquareFoot: 54
                      maxPricePerSquareFoot: 943.24
                      averageSquareFootage: 1717
                      medianSquareFootage: 1573
                      minSquareFootage: 636
                      maxSquareFootage: 6000
                      averageDaysOnMarket: 77
                      medianDaysOnMarket: 61
                      minDaysOnMarket: 2
                      maxDaysOnMarket: 279
                      newListings: 41
                      totalListings: 248
                      dataByPropertyType:
                      - propertyType: Condo
                        averagePrice: 398267
                        medianPrice: 157500
                        minPrice: 124900
                        maxPrice: 1599000
                        averagePricePerSquareFoot: 174.28
                        medianPricePerSquareFoot: 132.02
                        minPricePerSquareFoot: 119.07
                        maxPricePerSquareFoot: 357.48
                        averageSquareFootage: 1700
                        medianSquareFootage: 1148
                        minSquareFootage: 1049
                        maxSquareFootage: 4473
                        averageDaysOnMarket: 119.17
                        medianDaysOnMarket: 111
                        minDaysOnMarket: 33
                        maxDaysOnMarket: 225
                        newListings: 0
                        totalListings: 6
                      - propertyType: Land
                        averagePrice: 481907
                        medianPrice: 275000
                        minPrice: 36900
                        maxPrice: 2530000
                        averagePricePerSquareFoot: null
                        medianPricePerSquareFoot: null
                        minPricePerSquareFoot: null
                        maxPricePerSquareFoot: null
                        averageSquareFootage: null
                        medianSquareFootage: null
                        minSquareFootage: null
                        maxSquareFootage: null
                        averageDaysOnMarket: 107.43
                        medianDaysOnMarket: 104
                        minDaysOnMarket: 5
                        maxDaysOnMarket: 256
                        newListings: 1
                        totalListings: 28
                      - propertyType: Manufactured
                        averagePrice: 154643
                        medianPrice: 89900
                        minPrice: 8899
                        maxPrice: 499900
                        averagePricePerSquareFoot: 83.07
                        medianPricePerSquareFoot: 69.85
                        minPricePerSquareFoot: 54
                        maxPricePerSquareFoot: 127.66
                        averageSquareFootage: 2090
                        medianSquareFootage: 1175
                        minSquareFootage: 924
                        maxSquareFootage: 6000
                        averageDaysOnMarket: 116.43
                        medianDaysOnMarket: 97
                        minDaysOnMarket: 81
                        maxDaysOnMarket: 181
                        newListings: 0
                        totalListings: 7
                      - propertyType: Multi-Family
                        averagePrice: 446750
                        medianPrice: 479900
                        minPrice: 240000
                        maxPrice: 514500
                        averagePricePerSquareFoot: 182.87
                        medianPricePerSquareFoot: 180.01
                        minPricePerSquareFoot: 152.73
                        maxPricePerSquareFoot: 217.79
                        averageSquareFootage: 2498
                        medianSquareFootage: 2666
                        minSquareFootage: 1102
                        maxSquareFootage: 3200
                        averageDaysOnMarket: 37
                        medianDaysOnMarket: 11
                        minDaysOnMarket: 11
                        maxDaysOnMarket: 134
                        newListings: 4
                        totalListings: 8
                      - propertyType: Single Family
                        averagePrice: 347649
                        medianPrice: 305000
                        minPrice: 128000
                        maxPrice: 1798611
                        averagePricePerSquareFoot: 214.07
                        medianPricePerSquareFoot: 206.33
                        minPricePerSquareFoot: 94.79
                        maxPricePerSquareFoot: 943.24
                        averageSquareFootage: 1673
                        medianSquareFootage: 1515
                        minSquareFootage: 636
                        maxSquareFootage: 4617
                        averageDaysOnMarket: 69.19
                        medianDaysOnMarket: 61
                        minDaysOnMarket: 3
                        maxDaysOnMarket: 228
                        newListings: 24
                        totalListings: 158
                      - propertyType: Townhouse
                        averagePrice: 316301
                        medianPrice: 254990
                        minPrice: 115000
                        maxPrice: 745000
                        averagePricePerSquareFoot: 188.97
                        medianPricePerSquareFoot: 154.37
                        minPricePerSquareFoot: 110.58
                        maxPricePerSquareFoot: 420.56
                        averageSquareFootage: 1679
                        medianSquareFootage: 1616
                        minSquareFootage: 1040
                        maxSquareFootage: 2079
                        averageDaysOnMarket: 86.29
                        medianDaysOnMarket: 30
                        minDaysOnMarket: 2
                        maxDaysOnMarket: 279
                        newListings: 12
                        totalListings: 41
                      dataByBedrooms:
                      - bedrooms: 0
                        averagePrice: 499900
                        medianPrice: 499900
                        minPrice: 499900
                        maxPrice: 499900
                        averagePricePerSquareFoot: 83.32
                        medianPricePerSquareFoot: 83.32
                        minPricePerSquareFoot: 83.32
                        maxPricePerSquareFoot: 83.32
                        averageSquareFootage: 6000
                        medianSquareFootage: 6000
                        minSquareFootage: 6000
                        maxSquareFootage: 6000
                        averageDaysOnMarket: 81
                        medianDaysOnMarket: 81
                        minDaysOnMarket: 81
                        maxDaysOnMarket: 81
                        newListings: 0
                        totalListings: 1
                      - bedrooms: 1
                        averagePrice: 816300
                        medianPrice: 599900
                        minPrice: 250000
                        maxPrice: 1599000
                        averagePricePerSquareFoot: 519.66
                        medianPricePerSquareFoot: 357.48
                        minPricePerSquareFoot: 258.26
                        maxPricePerSquareFoot: 943.24
                        averageSquareFootage: 2026
                        medianSquareFootage: 968
                        minSquareFootage: 636
                        maxSquareFootage: 4473
                        averageDaysOnMarket: 97
                        medianDaysOnMarket: 15
                        minDaysOnMarket: 15
                        maxDaysOnMarket: 179
                        newListings: 1
                        totalListings: 3
                      - bedrooms: 2
                        averagePrice: 251954
                        medianPrice: 240000
                        minPrice: 115000
                        maxPrice: 545000
                        averagePricePerSquareFoot: 225.42
                        medianPricePerSquareFoot: 225
                        minPricePerSquareFoot: 110.58
                        maxPricePerSquareFoot: 394.07
                        averageSquareFootage: 1127
                        medianSquareFootage: 1089
                        minSquareFootage: 790
                        maxSquareFootage: 1707
                        averageDaysOnMarket: 73.43
                        medianDaysOnMarket: 61
                        minDaysOnMarket: 5
                        maxDaysOnMarket: 225
                        newListings: 2
                        totalListings: 37
                      - bedrooms: 3
                        averagePrice: 312571
                        medianPrice: 290000
                        minPrice: 8899
                        maxPrice: 1798611
                        averagePricePerSquareFoot: 196.7
                        medianPricePerSquareFoot: 184.95
                        minPricePerSquareFoot: 54
                        maxPricePerSquareFoot: 719.44
                        averageSquareFootage: 1591
                        medianSquareFootage: 1568
                        minSquareFootage: 880
                        maxSquareFootage: 3418
                        averageDaysOnMarket: 78.57
                        medianDaysOnMarket: 61
                        minDaysOnMarket: 2
                        maxDaysOnMarket: 279
                        newListings: 24
                        totalListings: 129
                      - bedrooms: 4
                        averagePrice: 431145
                        medianPrice: 375000
                        minPrice: 144700
                        maxPrice: 1450000
                        averagePricePerSquareFoot: 189.84
                        medianPricePerSquareFoot: 174.15
                        minPricePerSquareFoot: 94.79
                        maxPricePerSquareFoot: 409.03
                        averageSquareFootage: 2270
                        medianSquareFootage: 2076
                        minSquareFootage: 1120
                        maxSquareFootage: 4141
                        averageDaysOnMarket: 66.37
                        medianDaysOnMarket: 60
                        minDaysOnMarket: 4
                        maxDaysOnMarket: 152
                        newListings: 9
                        totalListings: 42
                      - bedrooms: 5
                        averagePrice: 602667
                        medianPrice: 420000
                        minPrice: 339000
                        maxPrice: 1049000
                        averagePricePerSquareFoot: 173.73
                        medianPricePerSquareFoot: 152.73
                        minPricePerSquareFoot: 141.25
                        maxPricePerSquareFoot: 227.2
                        averageSquareFootage: 3256
                        medianSquareFootage: 2750
                        minSquareFootage: 2400
                        maxSquareFootage: 4617
                        averageDaysOnMarket: 71
                        medianDaysOnMarket: 61
                        minDaysOnMarket: 55
                        maxDaysOnMarket: 97
                        newListings: 0
                        totalListings: 3
                      - bedrooms: 6
                        averagePrice: 486820
                        medianPrice: 479900
                        minPrice: 479900
                        maxPrice: 514500
                        averagePricePerSquareFoot: 176.16
                        medianPricePerSquareFoot: 180.01
                        minPricePerSquareFoot: 160.78
                        maxPricePerSquareFoot: 180.01
                        averageSquareFootage: 2773
                        medianSquareFootage: 2666
                        minSquareFootage: 2666
                        maxSquareFootage: 3200
                        averageDaysOnMarket: 18.4
                        medianDaysOnMarket: 11
                        minDaysOnMarket: 11
                        maxDaysOnMarket: 48
                        newListings: 4
                        totalListings: 5
                      history:
                        2025-06:
                          date: '2025-06-01T00:00:00.000Z'
                          averagePrice: 348402
                          medianPrice: 290000
                          minPrice: 8899
                          maxPrice: 2530000
                          averagePricePerSquareFoot: 198.98
                          medianPricePerSquareFoot: 174.94
                          minPricePerSquareFoot: 54
                          maxPricePerSquareFoot: 962.5
                          averageSquareFootage: 1712
                          medianSquareFootage: 1587
                          minSquareFootage: 792
                          maxSquareFootage: 6000
                          averageDaysOnMarket: 76.89
                          medianDaysOnMarket: 54
                          minDaysOnMarket: 2
                          maxDaysOnMarket: 348
                          newListings: 47
                          totalListings: 263
                          dataByPropertyType:
                          - propertyType: Condo
                            averagePrice: 380983
                            medianPrice: 125000
                            minPrice: 105000
                            maxPrice: 1599000
                            averagePricePerSquareFoot: 166.94
                            medianPricePerSquareFoot: 129.63
                            minPricePerSquareFoot: 119.07
                            maxPricePerSquareFoot: 357.48
                            averageSquareFootage: 1630
                            medianSquareFootage: 1049
                            minSquareFootage: 810
                            maxSquareFootage: 4473
                            averageDaysOnMarket: 92.83
                            medianDaysOnMarket: 54
                            minDaysOnMarket: 53
                            maxDaysOnMarket: 220
                            newListings: 0
                            totalListings: 6
                          - propertyType: Land
                            averagePrice: 427697
                            medianPrice: 199000
                            minPrice: 19000
                            maxPrice: 2530000
                            averagePricePerSquareFoot: null
                            medianPricePerSquareFoot: null
                            minPricePerSquareFoot: null
                            maxPricePerSquareFoot: null
                            averageSquareFootage: null
                            medianSquareFootage: null
                            minSquareFootage: null
                            maxSquareFootage: null
                            averageDaysOnMarket: 113.07
                            medianDaysOnMarket: 101
                            minDaysOnMarket: 2
                            maxDaysOnMarket: 343
                            newListings: 2
                            totalListings: 34
                          - propertyType: Manufactured
                            averagePrice: 173222
                            medianPrice: 150000
                            minPrice: 8899
                            maxPrice: 499900
                            averagePricePerSquareFoot: 97.76
                            medianPricePerSquareFoot: 84.69
                            minPricePerSquareFoot: 54
                            maxPricePerSquareFoot: 146
                            averageSquareFootage: 2007
                            medianSquareFootage: 1175
                            minSquareFootage: 924
                            maxSquareFootage: 6000
                            averageDaysOnMarket: 73.22
                            medianDaysOnMarket: 73
                            minDaysOnMarket: 3
                            maxDaysOnMarket: 124
                            newListings: 1
                            totalListings: 9
                          - propertyType: Multi-Family
                            averagePrice: 431160
                            medianPrice: 474900
                            minPrice: 200000
                            maxPrice: 545000
                            averagePricePerSquareFoot: 236.46
                            medianPricePerSquareFoot: 173.61
                            minPricePerSquareFoot: 163.64
                            maxPricePerSquareFoot: 394.36
                            averageSquareFootage: 1888
                            medianSquareFootage: 1382
                            minSquareFootage: 1152
                            maxSquareFootage: 2750
                            averageDaysOnMarket: 119.8
                            medianDaysOnMarket: 116
                            minDaysOnMarket: 17
                            maxDaysOnMarket: 203
                            newListings: 1
                            totalListings: 5
                          - propertyType: Single Family
                            averagePrice: 347684
                            medianPrice: 300000
                            minPrice: 110000
                            maxPrice: 1999611
                            averagePricePerSquareFoot: 210.26
                            medianPricePerSquareFoot: 201.08
                            minPricePerSquareFoot: 97.57
                            maxPricePerSquareFoot: 962.5
                            averageSquareFootage: 1680
                            medianSquareFootage: 1542
                            minSquareFootage: 792
                            maxSquareFootage: 4617
                            averageDaysOnMarket: 68.06
                            medianDaysOnMarket: 48
                            minDaysOnMarket: 2
                            maxDaysOnMarket: 348
                            newListings: 33
                            totalListings: 161
                          - propertyType: Townhouse
                            averagePrice: 314794
                            medianPrice: 288990
                            minPrice: 199900
                            maxPrice: 765000
                            averagePricePerSquareFoot: 179.86
                            medianPricePerSquareFoot: 156.89
                            minPricePerSquareFoot: 139.99
                            maxPricePerSquareFoot: 420.56
                            averageSquareFootage: 1762
                            medianSquareFootage: 1816
                            minSquareFootage: 1383
                            maxSquareFootage: 2150
                            averageDaysOnMarket: 79.7
                            medianDaysOnMarket: 39
                            minDaysOnMarket: 2
                            maxDaysOnMarket: 343
                            newListings: 10
                            totalListings: 48
                          dataByBedrooms:
                          - bedrooms: 0
                            averagePrice: 499900
                            medianPrice: 499900
                            minPrice: 499900
                            maxPrice: 499900
                            averagePricePerSquareFoot: 83.32
                            medianPricePerSquareFoot: 83.32
                            minPricePerSquareFoot: 83.32
                            maxPricePerSquareFoot: 83.32
                            averageSquareFootage: 6000
                            medianSquareFootage: 6000
                            minSquareFootage: 6000
                            maxSquareFootage: 6000
                            averageDaysOnMarket: 24
                            medianDaysOnMarket: 24
                            minDaysOnMarket: 24
                            maxDaysOnMarket: 24
                            newListings: 1
                            totalListings: 1
                          - bedrooms: 1
                            averagePrice: 528475
                            medianPrice: 159900
                            minPrice: 105000
                            maxPrice: 1599000
                            averagePricePerSquareFoot: 233.93
                            medianPricePerSquareFoot: 190.36
                            minPricePerSquareFoot: 129.63
                            maxPricePerSquareFoot: 357.48
                            averageSquareFootage: 1773
                            medianSquareFootage: 840
                            minSquareFootage: 810
                            maxSquareFootage: 4473
                            averageDaysOnMarket: 67
                            medianDaysOnMarket: 53
                            minDaysOnMarket: 26
                            maxDaysOnMarket: 122
                            newListings: 0
                            totalListings: 4
                          - bedrooms: 2
                            averagePrice: 267400
                            medianPrice: 248900
                            minPrice: 110000
                            maxPrice: 770000
                            averagePricePerSquareFoot: 245.81
                            medianPricePerSquareFoot: 228.57
                            minPricePerSquareFoot: 104.17
                            maxPricePerSquareFoot: 962.5
                            averageSquareFootage: 1129
                            medianSquareFootage: 1056
                            minSquareFootage: 792
                            maxSquareFootage: 1707
                            averageDaysOnMarket: 51.41
                            medianDaysOnMarket: 46
                            minDaysOnMarket: 3
                            maxDaysOnMarket: 220
                            newListings: 9
                            totalListings: 36
                          - bedrooms: 3
                            averagePrice: 306938
                            medianPrice: 280000
                            minPrice: 8899
                            maxPrice: 1999611
                            averagePricePerSquareFoot: 192
                            medianPricePerSquareFoot: 173.28
                            minPricePerSquareFoot: 54
                            maxPricePerSquareFoot: 799.84
                            averageSquareFootage: 1577
                            medianSquareFootage: 1560
                            minSquareFootage: 924
                            maxSquareFootage: 2840
                            averageDaysOnMarket: 77.46
                            medianDaysOnMarket: 53
                            minDaysOnMarket: 2
                            maxDaysOnMarket: 343
                            newListings: 25
                            totalListings: 136
                          - bedrooms: 4
                            averagePrice: 434817
                            medianPrice: 395000
                            minPrice: 234900
                            maxPrice: 1550000
                            averagePricePerSquareFoot: 186.06
                            medianPricePerSquareFoot: 167.22
                            minPricePerSquareFoot: 97.57
                            maxPricePerSquareFoot: 437.24
                            averageSquareFootage: 2326
                            medianSquareFootage: 2079
                            minSquareFootage: 1200
                            maxSquareFootage: 4141
                            averageDaysOnMarket: 75
                            medianDaysOnMarket: 59
                            minDaysOnMarket: 2
                            maxDaysOnMarket: 348
                            newListings: 7
                            totalListings: 45
                          - bedrooms: 5
                            averagePrice: 510417
                            medianPrice: 350000
                            minPrice: 278500
                            maxPrice: 1049000
                            averagePricePerSquareFoot: 171.35
                            medianPricePerSquareFoot: 159.52
                            minPricePerSquareFoot: 117.61
                            maxPricePerSquareFoot: 227.2
                            averageSquareFootage: 2839
                            medianSquareFootage: 2400
                            minSquareFootage: 2100
                            maxSquareFootage: 4617
                            averageDaysOnMarket: 59.83
                            medianDaysOnMarket: 17
                            minDaysOnMarket: 3
                            maxDaysOnMarket: 215
                            newListings: 3
                            totalListings: 6
                          - bedrooms: 6
                            averagePrice: 474900
                            medianPrice: 474900
                            minPrice: 474900
                            maxPrice: 474900
                            averagePricePerSquareFoot: null
                            medianPricePerSquareFoot: null
                            minPricePerSquareFoot: null
                            maxPricePerSquareFoot: null
                            averageSquareFootage: null
                            medianSquareFootage: null
                            minSquareFootage: null
                            maxSquareFootage: null
                            averageDaysOnMarket: 157
                            medianDaysOnMarket: 157
                            minDaysOnMarket: 157
                            maxDaysOnMarket: 157
                            newListings: 0
                            totalListings: 1
                        2025-07:
                          date: '2025-07-01T00:00:00.000Z'
                          averagePrice: 355280
                          medianPrice: 290000
                          minPrice: 8899
                          maxPrice: 2530000
                          averagePricePerSquareFoot: 205.14
                          medianPricePerSquareFoot: 191.71
                          minPricePerSquareFoot: 54
                          maxPricePerSquareFoot: 962.5
                          averageSquareFootage: 1702
                          medianSquareFootage: 1560
                          minSquareFootage: 800
                          maxSquareFootage: 6000
                          averageDaysOnMarket: 76.27
                          medianDaysOnMarket: 61
                          minDaysOnMarket: 2
                          maxDaysOnMarket: 351
                          newListings: 55
                          totalListings: 244
                          dataByPropertyType:
                          - propertyType: Condo
                            averagePrice: 399100
                            medianPrice: 157500
                            minPrice: 124900
                            maxPrice: 1599000
                            averagePricePerSquareFoot: 175.02
                            medianPricePerSquareFoot: 133.66
                            minPricePerSquareFoot: 119.07
                            maxPricePerSquareFoot: 357.48
                            averageSquareFootage: 1700
                            medianSquareFootage: 1148
                            minSquareFootage: 1049
                            maxSquareFootage: 4473
                            averageDaysOnMarket: 97.5
                            medianDaysOnMarket: 85
                            minDaysOnMarket: 7
                            maxDaysOnMarket: 225
                            newListings: 2
                            totalListings: 6
                          - propertyType: Land
                            averagePrice: 438718
                            medianPrice: 199999
                            minPrice: 19000
                            maxPrice: 2530000
                            averagePricePerSquareFoot: null
                            medianPricePerSquareFoot: null
                            minPricePerSquareFoot: null
                            maxPricePerSquareFoot: null
                            averageSquareFootage: null
                            medianSquareFootage: null
                            minSquareFootage: null
                            maxSquareFootage: null
                            averageDaysOnMarket: 104.92
                            medianDaysOnMarket: 84
                            minDaysOnMarket: 2
                            maxDaysOnMarket: 343
                            newListings: 3
                            totalListings: 33
                          - propertyType: Manufactured
                            averagePrice: 170444
                            medianPrice: 150000
                            minPrice: 8899
                            maxPrice: 499900
                            averagePricePerSquareFoot: 95.75
                            medianPricePerSquareFoot: 83.32
                            minPricePerSquareFoot: 54
                            maxPricePerSquareFoot: 146
                            averageSquareFootage: 2007
                            medianSquareFootage: 1175
                            minSquareFootage: 924
                            maxSquareFootage: 6000
                            averageDaysOnMarket: 93
                            medianDaysOnMarket: 97
                            minDaysOnMarket: 3
                            maxDaysOnMarket: 155
                            newListings: 0
                            totalListings: 9
                          - propertyType: Multi-Family
                            averagePrice: 370880
                            medianPrice: 420000
                            minPrice: 200000
                            maxPrice: 514500
                            averagePricePerSquareFoot: 183.3
                            medianPricePerSquareFoot: 173.61
                            minPricePerSquareFoot: 152.73
                            maxPricePerSquareFoot: 217.79
                            averageSquareFootage: 2094
                            medianSquareFootage: 2268
                            minSquareFootage: 1102
                            maxSquareFootage: 3200
                            averageDaysOnMarket: 65
                            medianDaysOnMarket: 48
                            minDaysOnMarket: 15
                            maxDaysOnMarket: 134
                            newListings: 2
                            totalListings: 5
                          - propertyType: Single Family
                            averagePrice: 353800
                            medianPrice: 310000
                            minPrice: 128000
           

# --- truncated at 32 KB (177 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/rentcast/refs/heads/main/openapi/rentcast-markets-api-openapi.yml