> ## Documentation Index
> Fetch the complete documentation index at: https://docs.propertydata.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Find Home Improvement

> Find Home Improvement



## OpenAPI

````yaml api-reference/zillow/openapi.json get /api/v1/home-improvement/find
openapi: 3.1.0
info:
  title: US Property Data
  description: US Property Data Documentation
  version: 1.0.0
servers:
  - url: https://us-property-data.p.rapidapi.com
    description: RapiAPI
security: []
paths:
  /api/v1/home-improvement/find:
    get:
      tags:
        - Home Improvement
      summary: Find Home Improvement
      description: Find Home Improvement
      operationId: getApiV1Home-improvementFind
      parameters:
        - in: query
          name: location
          schema:
            type: string
            description: >-
              Find home improvement by location, such as city, neighborhood, or
              ZIP code. Either `location` or `name` must be provided
            example: New York
        - in: query
          name: name
          schema:
            type: string
            description: >-
              Find home improvement by location, such as city, neighborhood, or
              ZIP code. Either `location` or `name` must be provided
            example: ''
        - in: query
          name: page
          schema:
            type: integer
            exclusiveMinimum: 0
            description: Page number for pagination
            default: 1
            example: 1
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  cost:
                    type: number
                    description: Cost of the request
                    example: 1
                  total:
                    type: number
                    description: Total number of home improvements matching
                    example: 23314
                  has_more:
                    type: boolean
                    description: Whether there are more data to fetch
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        businessName:
                          type: string
                          description: >-
                            The public-facing name of the home improvement
                            business
                          example: Flood Damage Pro of Arlington
                        encodedZuid:
                          type: string
                          description: A unique encoded identifier for the business profile
                          example: X1-ZU101ylxkjqwavd_8l13l
                        fullName:
                          type: string
                          description: The full registered or display name of the business
                          example: Flood Damage Pro of Arlington
                        location:
                          type: string
                          description: The city and state where the business is located
                          example: Arlington, VA
                        phoneNumber:
                          type: string
                          description: The primary contact phone number for the business
                          example: (703) 269-9842
                        profileLink:
                          type: string
                          description: A relative URL linking to the business profile page
                          example: /profile/FloodDamageArlington
                        profilePhotoSrc:
                          type: string
                          description: URL of the business profile photo or logo image
                          example: >-
                            https://photos.zillowstatic.com/fp/8391e7b5a75d6e9445b2424143d5bf55-h_g.jpg
                        reviewExcerpt:
                          type: 'null'
                          description: A short excerpt from a customer review, if available
                          example: null
                        reviewExcerptDate:
                          type: 'null'
                          description: >-
                            The date associated with the displayed review
                            excerpt
                          example: null
                        reviewLink:
                          type: string
                          description: >-
                            A relative URL linking directly to the reviews
                            section of the profile
                          example: /profile/FloodDamageArlington#reviews
                        numTotalReviews:
                          type: number
                          description: >-
                            The total number of customer reviews for the
                            business
                          example: 11
                        reviews:
                          type: string
                          description: A human-readable summary of the total review count
                          example: 11 reviews
                        reviewStarsRating:
                          type: number
                          description: The average star rating based on customer reviews
                          example: 5
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      Invalid API key. Go to https://docs.rapidapi.com/docs/keys
                      for more info.
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: You are not subscribed to this API.
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: 'Request failed with status 500: Internal Server Error'
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: >-
                      Oops, it looks like there was an issue processing your
                      request. Don't worry, you won't be charged for this
                      request
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: Rapid API Key

````