> ## 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/properties/search

> Search 99acres listings by city for buy or rent. Returns the search feed of individual property listings and new-launch projects: id, name, heading, price and price per sqft, carpet area, configuration, floor, locality, geo coordinates, RERA id and dealer name.

**Price:** 10 credits per 25 results



## OpenAPI

````yaml /openapi/real-estate.json post /api/acres99/properties/search
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/properties/search:
    post:
      tags:
        - /acres99
      summary: /acres99/properties/search
      description: >-
        Search 99acres listings by city for buy or rent. Returns the search feed
        of individual property listings and new-launch projects: id, name,
        heading, price and price per sqft, carpet area, configuration, floor,
        locality, geo coordinates, RERA id and dealer name.


        **Price:** 10 credits per 25 results
      operationId: __api_acres99_properties_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Acres99PropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Acres99SearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Acres99PropertiesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        city:
          type: string
          minLength: 1
        city_id:
          type: integer
          exclusiveMinimum: 0
        listing_type:
          $ref: '#/components/schemas/Acres99ListingType'
          default: buy
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - city
        - city_id
        - count
    Acres99SearchResult:
      properties:
        '@type':
          type: string
          default: Acres99SearchResult
        result_type:
          type: string
        id:
          type: string
        spid:
          anyOf:
            - type: string
            - type: 'null'
        npxid:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        heading:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        builder_name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          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'
        carpet_area_sqft:
          anyOf:
            - type: number
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        total_floor_count:
          anyOf:
            - type: integer
            - type: 'null'
        possession_status:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          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_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        dealer_name:
          anyOf:
            - type: string
            - type: 'null'
        dealer_company:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - result_type
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    Acres99ListingType:
      type: string
      enum:
        - buy
        - rent
    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

````