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

# Get Builder Communities

> Get Builder Communities



## OpenAPI

````yaml api-reference/zillow/openapi.json get /api/v1/builder/communities
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/communities:
    get:
      tags:
        - Builder
      summary: Get Builder Communities
      description: Get Builder Communities
      operationId: getApiV1BuilderCommunities
      parameters:
        - in: query
          name: feed_id
          schema:
            type: string
            description: Unique identifier of the builder
            example: '14395'
          required: true
      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
                  data:
                    type: object
                    properties:
                      communityAddress:
                        type: object
                        properties:
                          longitude:
                            type: number
                            description: Longitude coordinate of the community location
                            example: -72.82687
                          latitude:
                            type: number
                            description: Latitude coordinate of the community location
                            example: 40.79917
                          city:
                            type: string
                            description: City where the community is located
                            example: Moriches
                          state:
                            type: string
                            description: State where the community is located
                            example: NY
                        description: >-
                          Geographic location and address information of the
                          community
                      providerListingId:
                        type: number
                        description: Unique provider listing ID for this builder community
                        example: 31956486
                      url:
                        type: string
                        description: Relative URL to the community detail page
                        example: /community/beechwood-at-waterways/31956486_plid/
                      style:
                        type: string
                        description: Style or category of the community
                        example: Adult
                      name:
                        type: string
                        description: Name of the builder community
                        example: Beechwood at The Waterways
                      featuredImage:
                        type: object
                        properties:
                          url:
                            type: string
                            description: >-
                              URL of the featured image representing the
                              community
                            example: >-
                              https://photos.zillowstatic.com:443/fp/9d9450ee3ed52b7e4094e149a07695a6-p_g.jpg
                        description: Featured image information of the community
                      minPrice:
                        type: number
                        description: Minimum starting price of homes in this community
                        example: 649000
                      currency:
                        type: string
                        description: Currency code of the listing price
                        example: USD
        '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

````