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

# /housing/projects

> Get full Housing.com new-launch project details by id or project URL: name, builder, price range, configuration cards (BHK/area/price), possession status and date, launch date, RERA, facilities and amenities, geo coordinates, description and photo gallery.

**Price:** 1 credit

**⚠️ Common errors:** 412: Project not found (well-formed but nonexistent id, or page has no project)



## OpenAPI

````yaml /openapi/real-estate.json post /api/housing/projects
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/housing/projects:
    post:
      tags:
        - /housing
      summary: /housing/projects
      description: >-
        Get full Housing.com new-launch project details by id or project URL:
        name, builder, price range, configuration cards (BHK/area/price),
        possession status and date, launch date, RERA, facilities and amenities,
        geo coordinates, description and photo gallery.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Project not found (well-formed but
        nonexistent id, or page has no project)
      operationId: __api_housing_projects_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HousingProjectsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HousingProject'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HousingProjectsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        project:
          type: string
          minLength: 1
      type: object
      required:
        - project
    HousingProject:
      properties:
        '@type':
          type: string
          default: HousingProject
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        subtitle:
          anyOf:
            - type: string
            - type: 'null'
        project_type:
          anyOf:
            - type: string
            - type: 'null'
        configuration:
          anyOf:
            - type: string
            - type: 'null'
        possession_status:
          anyOf:
            - type: string
            - type: 'null'
        possession_date:
          anyOf:
            - type: string
            - type: 'null'
        launch_date:
          anyOf:
            - type: string
            - type: 'null'
        property_tags:
          items:
            type: string
          type: array
          default: []
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        project_area:
          anyOf:
            - type: string
            - type: 'null'
        unit_count:
          anyOf:
            - type: integer
            - type: 'null'
        size_range:
          anyOf:
            - type: string
            - type: 'null'
        area_unit:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        sublocality:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        rera_id:
          anyOf:
            - type: string
            - type: 'null'
        is_rera_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        builder:
          anyOf:
            - $ref: '#/components/schemas/HousingProjectBuilder'
            - type: 'null'
        configurations:
          items:
            $ref: '#/components/schemas/HousingProjectConfiguration'
          type: array
          default: []
        facilities:
          items:
            type: string
          type: array
          default: []
        amenities:
          items:
            type: string
          type: array
          default: []
        video_key:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HousingProjectBuilder:
      properties:
        '@type':
          type: string
          default: HousingProjectBuilder
        name:
          anyOf:
            - type: string
            - type: 'null'
        established_year:
          anyOf:
            - type: string
            - type: 'null'
        project_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HousingProjectConfiguration:
      properties:
        '@type':
          type: string
          default: HousingProjectConfiguration
        label:
          anyOf:
            - type: string
            - type: 'null'
        bedrooms:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        price_range:
          anyOf:
            - type: string
            - type: 'null'
        area_range:
          anyOf:
            - type: string
            - type: 'null'
        area_unit:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````