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

# /crexi/properties

> Get full Crexi commercial property details by id or detail URL: name, address, status, property type and subtype, asking price, price per sqft, cap rate, pro-forma cap rate and NOI, square footage, net rentable area, units, year built, buildings, stories, zoning, lot size, ceiling height, loading docks, ownership, opportunity zone, marketing description, investment highlights, image, latitude/longitude and the full typed summary detail list.

**Price:** 1 credit

**⚠️ Common errors:** 412: Property not found (well-formed id but no active listing for it)



## OpenAPI

````yaml /openapi/real-estate.json post /api/crexi/properties
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/crexi/properties:
    post:
      tags:
        - /crexi
      summary: /crexi/properties
      description: >-
        Get full Crexi commercial property details by id or detail URL: name,
        address, status, property type and subtype, asking price, price per
        sqft, cap rate, pro-forma cap rate and NOI, square footage, net rentable
        area, units, year built, buildings, stories, zoning, lot size, ceiling
        height, loading docks, ownership, opportunity zone, marketing
        description, investment highlights, image, latitude/longitude and the
        full typed summary detail list.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Property not found (well-formed id but no
        active listing for it)
      operationId: __api_crexi_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CrexiPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CrexiProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CrexiPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    CrexiProperty:
      properties:
        '@type':
          type: string
          default: CrexiProperty
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        platform:
          anyOf:
            - type: string
            - type: 'null'
        property_types:
          items:
            type: string
          type: array
          default: []
        subtypes:
          items:
            type: string
          type: array
          default: []
        asking_price:
          anyOf:
            - type: number
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        cap_rate:
          anyOf:
            - type: number
            - type: 'null'
        pro_forma_cap_rate:
          anyOf:
            - type: number
            - type: 'null'
        pro_forma_noi:
          anyOf:
            - type: number
            - type: 'null'
        net_operating_income:
          anyOf:
            - type: number
            - type: 'null'
        square_footage:
          anyOf:
            - type: integer
            - type: 'null'
        net_rentable_sqft:
          anyOf:
            - type: integer
            - type: 'null'
        units:
          anyOf:
            - type: integer
            - type: 'null'
        year_built:
          anyOf:
            - type: string
            - type: 'null'
        buildings:
          anyOf:
            - type: integer
            - type: 'null'
        stories:
          anyOf:
            - type: integer
            - type: 'null'
        zoning:
          anyOf:
            - type: string
            - type: 'null'
        lot_size_acres:
          anyOf:
            - type: number
            - type: 'null'
        ceiling_height:
          anyOf:
            - type: string
            - type: 'null'
        loading_docks:
          anyOf:
            - type: integer
            - type: 'null'
        parking_spots:
          anyOf:
            - type: integer
            - type: 'null'
        occupancy_rate:
          anyOf:
            - type: number
            - type: 'null'
        tenancy:
          anyOf:
            - type: string
            - type: 'null'
        tenant_count:
          anyOf:
            - type: integer
            - type: 'null'
        lease_type:
          anyOf:
            - type: string
            - type: 'null'
        lease_term_years:
          anyOf:
            - type: number
            - type: 'null'
        remaining_term_years:
          anyOf:
            - type: number
            - type: 'null'
        is_ground_lease:
          anyOf:
            - type: boolean
            - type: 'null'
        class_type:
          anyOf:
            - type: string
            - type: 'null'
        investment_type:
          anyOf:
            - type: string
            - type: 'null'
        apn:
          anyOf:
            - type: string
            - type: 'null'
        ownership:
          anyOf:
            - type: string
            - type: 'null'
        broker_co_op:
          anyOf:
            - type: boolean
            - type: 'null'
        is_in_opportunity_zone:
          anyOf:
            - type: boolean
            - type: 'null'
        is_note_loan:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sold:
          anyOf:
            - type: boolean
            - type: 'null'
        is_paused:
          anyOf:
            - type: boolean
            - type: 'null'
        is_outdated:
          anyOf:
            - type: boolean
            - type: 'null'
        is_elite:
          anyOf:
            - type: boolean
            - type: 'null'
        has_om:
          anyOf:
            - type: boolean
            - type: 'null'
        has_flyer:
          anyOf:
            - type: boolean
            - type: 'null'
        has_virtual_tour:
          anyOf:
            - type: boolean
            - type: 'null'
        marketing_description:
          anyOf:
            - type: string
            - type: 'null'
        investment_highlights:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        property_url:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        activated_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/CrexiLocation'
            - type: 'null'
        summary_details:
          items:
            $ref: '#/components/schemas/CrexiSummaryDetail'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CrexiLocation:
      properties:
        '@type':
          type: string
          default: CrexiLocation
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        county:
          anyOf:
            - type: string
            - type: 'null'
        state_code:
          anyOf:
            - type: string
            - type: 'null'
        state_name:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        full_address:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    CrexiSummaryDetail:
      properties:
        '@type':
          type: string
          default: CrexiSummaryDetail
        key:
          type: string
        label:
          anyOf:
            - type: string
            - type: 'null'
        value_type:
          anyOf:
            - type: string
            - type: 'null'
        display:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - key
    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

````