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

# /trulia/properties

> Get full Trulia property details by numeric ID (or property URL): address, location and coordinates, listing status, price (listing price or Trulia Estimate), bedrooms, bathrooms, floor space, property type, description, photos, MLS number, listing agent and broker, list date, full home details (interior, property, community, lot), price history, tax and assessment, and local market trends.

**Price:** 10 credits

**⚠️ Common errors:** 412: Property not found (well-formed but nonexistent ID, or page has no property)



## OpenAPI

````yaml /openapi/real-estate.json post /api/trulia/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/trulia/properties:
    post:
      tags:
        - /trulia
      summary: /trulia/properties
      description: >-
        Get full Trulia property details by numeric ID (or property URL):
        address, location and coordinates, listing status, price (listing price
        or Trulia Estimate), bedrooms, bathrooms, floor space, property type,
        description, photos, MLS number, listing agent and broker, list date,
        full home details (interior, property, community, lot), price history,
        tax and assessment, and local market trends.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Property not found (well-formed but
        nonexistent ID, or page has no property)
      operationId: __api_trulia_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TruliaPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TruliaProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TruliaPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    TruliaProperty:
      properties:
        '@type':
          type: string
          default: TruliaProperty
        id:
          type: string
        url:
          type: string
        address:
          anyOf:
            - type: string
            - type: 'null'
        street_address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        neighborhood:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        is_active_for_sale:
          anyOf:
            - type: boolean
            - type: 'null'
        is_active_for_rent:
          anyOf:
            - type: boolean
            - type: 'null'
        is_off_market:
          anyOf:
            - type: boolean
            - type: 'null'
        is_foreclosure:
          anyOf:
            - type: boolean
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        formatted_price:
          anyOf:
            - type: string
            - type: 'null'
        price_type:
          anyOf:
            - type: string
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: number
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: number
            - type: 'null'
        floor_space_sqft:
          anyOf:
            - type: number
            - type: 'null'
        lot_size:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        photo_count:
          anyOf:
            - type: integer
            - type: 'null'
        mls_number:
          anyOf:
            - type: string
            - type: 'null'
        listing_agent:
          anyOf:
            - type: string
            - type: 'null'
        listing_broker:
          anyOf:
            - type: string
            - type: 'null'
        listed_at:
          anyOf:
            - type: string
            - type: 'null'
        home_details:
          items:
            $ref: '#/components/schemas/TruliaPropertyFeatureCategory'
          type: array
          default: []
        price_history:
          items:
            $ref: '#/components/schemas/TruliaPropertyPriceHistoryEvent'
          type: array
          default: []
        tax_assessment:
          anyOf:
            - $ref: '#/components/schemas/TruliaPropertyTaxAssessment'
            - type: 'null'
        market_trends:
          anyOf:
            - $ref: '#/components/schemas/TruliaPropertyMarketTrends'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TruliaPropertyFeatureCategory:
      properties:
        '@type':
          type: string
          default: TruliaPropertyFeatureCategory
        name:
          type: string
        attributes:
          additionalProperties:
            type: string
          type: object
          default: {}
      type: object
      required:
        - name
    TruliaPropertyPriceHistoryEvent:
      properties:
        '@type':
          type: string
          default: TruliaPropertyPriceHistoryEvent
        date:
          anyOf:
            - type: string
            - type: 'null'
        event:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        formatted_price:
          anyOf:
            - type: string
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TruliaPropertyTaxAssessment:
      properties:
        '@type':
          type: string
          default: TruliaPropertyTaxAssessment
        year:
          anyOf:
            - type: integer
            - type: 'null'
        tax_value:
          anyOf:
            - type: number
            - type: 'null'
        total_assessment:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    TruliaPropertyMarketTrends:
      properties:
        '@type':
          type: string
          default: TruliaPropertyMarketTrends
        market_condition:
          anyOf:
            - type: string
            - type: 'null'
        avg_sale_price:
          anyOf:
            - type: number
            - type: 'null'
        sale_to_list_price:
          anyOf:
            - type: string
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: string
            - type: 'null'
        available_listings:
          anyOf:
            - type: string
            - type: 'null'
        last_updated:
          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

````