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

# /acres99/projects

> Get full 99acres new-launch project details by id (npxid) or project URL: name, project type (residential/commercial), description, builder, construction status and possession date, price range, locality and geo coordinates, RERA status and id, unit configurations (BHK, area, price), gallery images, facilities and key highlights.

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/acres99/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/acres99/projects:
    post:
      tags:
        - /acres99
      summary: /acres99/projects
      description: >-
        Get full 99acres new-launch project details by id (npxid) or project
        URL: name, project type (residential/commercial), description, builder,
        construction status and possession date, price range, locality and geo
        coordinates, RERA status and id, unit configurations (BHK, area, price),
        gallery images, facilities and key highlights.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Project not found (well-formed but
        nonexistent npxid, or page has no project)
      operationId: __api_acres99_projects_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Acres99ProjectsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Acres99Project'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Acres99ProjectsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        project:
          type: string
          minLength: 1
      type: object
      required:
        - project
    Acres99Project:
      properties:
        '@type':
          type: string
          default: Acres99Project
        id:
          type: string
        npxid:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        project_type:
          anyOf:
            - $ref: '#/components/schemas/Acres99ProjectType'
            - type: 'null'
        builder_name:
          anyOf:
            - type: string
            - type: 'null'
        builder_url:
          anyOf:
            - type: string
            - type: 'null'
        construction_status:
          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'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        rera_status:
          anyOf:
            - type: string
            - type: 'null'
        rera_id:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        configurations:
          items:
            $ref: '#/components/schemas/Acres99ProjectConfiguration'
          type: array
          default: []
        facilities:
          items:
            type: string
          type: array
          default: []
        highlights:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    Acres99ProjectType:
      type: string
      enum:
        - Residential
        - Commercial
    Acres99ProjectConfiguration:
      properties:
        '@type':
          type: string
          default: Acres99ProjectConfiguration
        label:
          anyOf:
            - type: string
            - type: 'null'
        sub_label:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        area_sqft:
          anyOf:
            - type: number
            - type: 'null'
        area_text:
          anyOf:
            - type: string
            - type: 'null'
        area_type:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_text:
          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

````