> ## 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 Builder

> Find Builder



## OpenAPI

````yaml api-reference/zillow/openapi.json get /api/v1/builder/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/builder/find:
    get:
      tags:
        - Builder
      summary: Find Builder
      description: Find Builder
      operationId: getApiV1BuilderFind
      parameters:
        - in: query
          name: location
          schema:
            type: string
            description: >-
              Find builders 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 builders by name. Either `location` or `name` must be
              provided
            example: Toll
        - 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: ''
                    example: 44
                  has_more:
                    type: boolean
                    description: Whether there are more data to fetch
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        feedId:
                          type: number
                          description: Unique identifier of the builder feed on Zillow
                          example: 67130
                        logoUrl:
                          type: string
                          description: URL of the builder logo image
                          example: >-
                            https://photos.zillowstatic.com/fp/fd62ecf9a4b6d09cf72d71f2ff84b26a-l_c.jpg
                        name:
                          type: string
                          description: Name of the home builder
                          example: Abele Homes, LLC
                        url:
                          type: string
                          description: Relative URL to the builder profile page
                          example: /home-builder-profile/abele-homes/67130/
                        specCount:
                          type: number
                          description: >-
                            Number of available spec homes listed by this
                            builder
                          example: 4
                        communitiesCount:
                          type: number
                          description: >-
                            Number of active communities associated with this
                            builder
                          example: 1
                        specialties:
                          type: array
                          items:
                            type: string
                          description: >-
                            List of specialties or services offered by the
                            builder
                          example:
                            - Build On Your Lot
                            - Communities
                            - Luxury Homes
                        locations:
                          type: array
                          items:
                            type: object
                            properties:
                              regionId:
                                type: number
                                description: >-
                                  Unique region identifier where the builder
                                  operates
                                example: 822230
                              urlFragment:
                                type: string
                                description: URL fragment for the region location
                                example: albany-schenectady-troy-ny/822230/
                              name:
                                type: string
                                description: Display name of the region or market area
                                example: Albany-Schenectady-Troy, NY
                              providerListingIds:
                                type: array
                                items:
                                  type: number
                                description: >-
                                  List of provider listing IDs associated with
                                  this location
                                example:
                                  - 31767574
                          description: >-
                            List of locations and regions where the builder has
                            active listings or communities
                        averageRatings:
                          type:
                            - number
                            - 'null'
                          description: >-
                            Average rating score of the builder based on user
                            reviews, if available
                          example: null
                        description:
                          type: string
                          description: >-
                            Detailed description or introduction of the home
                            builder
                          example: >-
                            Not only is Abele Builders family-owned and
                            operated, we treat our customers like family. For
                            more than 35 years, we’ve taken great pride in the
                            houses we build. Our mission is to provide a
                            wonderful, quality home for you and your family. We
                            work to create communities that are visually
                            pleasing, well-designed and well-maintained.
                            Outstanding craftsmanship, quality materials and
                            beautiful floorplans are all part of an Abele-built
                            home
                        minPrice:
                          type: number
                          description: >-
                            Minimum starting price of homes offered by this
                            builder
                          example: 599995
        '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

````