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

# /magicbricks/projects

> Get full Magicbricks new-launch project details by id (psmId) or project URL: name, property and project type, configuration, description, construction status, launch and possession dates, price range and per sqft, project area, tower and unit counts, locality and geo coordinates, RERA id and approval, builder, brochure, amenities, highlights, unit configurations, ratings, and gallery images.

**Price:** 20 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/magicbricks/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/magicbricks/projects:
    post:
      tags:
        - /magicbricks
      summary: /magicbricks/projects
      description: >-
        Get full Magicbricks new-launch project details by id (psmId) or project
        URL: name, property and project type, configuration, description,
        construction status, launch and possession dates, price range and per
        sqft, project area, tower and unit counts, locality and geo coordinates,
        RERA id and approval, builder, brochure, amenities, highlights, unit
        configurations, ratings, and gallery images.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Project not found (well-formed but
        nonexistent psmId, or page has no project)
      operationId: __api_magicbricks_projects_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MagicbricksProjectsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MagicbricksProject'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MagicbricksProjectsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        project:
          type: string
          minLength: 1
      type: object
      required:
        - project
    MagicbricksProject:
      properties:
        '@type':
          type: string
          default: MagicbricksProject
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        project_type:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        configuration:
          anyOf:
            - type: string
            - type: 'null'
        construction_status:
          anyOf:
            - type: string
            - type: 'null'
        launch_date:
          anyOf:
            - type: string
            - type: 'null'
        possession_date:
          anyOf:
            - type: string
            - 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: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        project_area:
          anyOf:
            - type: string
            - type: 'null'
        tower_count:
          anyOf:
            - type: integer
            - type: 'null'
        unit_count:
          anyOf:
            - type: integer
            - type: 'null'
        bedrooms:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        pincode:
          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_approved:
          anyOf:
            - type: boolean
            - type: 'null'
        is_prelaunch:
          anyOf:
            - type: boolean
            - type: 'null'
        builder_name:
          anyOf:
            - type: string
            - type: 'null'
        builder_description:
          anyOf:
            - type: string
            - type: 'null'
        builder_url:
          anyOf:
            - type: string
            - type: 'null'
        brochure_url:
          anyOf:
            - type: string
            - type: 'null'
        amenities:
          items:
            type: string
          type: array
          default: []
        highlights:
          items:
            type: string
          type: array
          default: []
        configurations:
          items:
            $ref: '#/components/schemas/MagicbricksProjectConfiguration'
          type: array
          default: []
        rating:
          anyOf:
            - $ref: '#/components/schemas/MagicbricksProjectRating'
            - 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
    MagicbricksProjectConfiguration:
      properties:
        '@type':
          type: string
          default: MagicbricksProjectConfiguration
        bedrooms:
          anyOf:
            - type: integer
            - type: 'null'
        property_type_code:
          anyOf:
            - type: string
            - type: 'null'
        area_sqft:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    MagicbricksProjectRating:
      properties:
        '@type':
          type: string
          default: MagicbricksProjectRating
        overall:
          anyOf:
            - type: number
            - type: 'null'
        construction_quality:
          anyOf:
            - type: number
            - type: 'null'
        maintenance:
          anyOf:
            - type: number
            - type: 'null'
        amenities:
          anyOf:
            - type: number
            - type: 'null'
        infrastructure:
          anyOf:
            - type: number
            - type: 'null'
        security:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - 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

````