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

# /redfin/properties

> Get full Redfin property details by property URL: address, price, predicted value, last sold price/date, beds, baths, sqft, lot size, year built, stories, property type, HOA, MLS id and status, days on market, latitude/longitude, photos, listing description, listing agents/brokers and the full amenity breakdown (parking, interior, exterior, utilities, etc.).

**Price:** 5 credits

**⚠️ Common errors:** 412: Property not found (well-formed URL but no property data for it)



## OpenAPI

````yaml /openapi/real-estate.json post /api/redfin/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/redfin/properties:
    post:
      tags:
        - /redfin
      summary: /redfin/properties
      description: >-
        Get full Redfin property details by property URL: address, price,
        predicted value, last sold price/date, beds, baths, sqft, lot size, year
        built, stories, property type, HOA, MLS id and status, days on market,
        latitude/longitude, photos, listing description, listing agents/brokers
        and the full amenity breakdown (parking, interior, exterior, utilities,
        etc.).


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Property not found (well-formed URL but no
        property data for it)
      operationId: __api_redfin_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RedfinPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RedfinProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RedfinPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    RedfinProperty:
      properties:
        '@type':
          type: string
          default: RedfinProperty
        id:
          type: string
        listing_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        mls_id:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        status_description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        predicted_value:
          anyOf:
            - type: number
            - type: 'null'
        last_sold_price:
          anyOf:
            - type: number
            - type: 'null'
        last_sold_date:
          anyOf:
            - type: integer
            - type: 'null'
        beds:
          anyOf:
            - type: number
            - type: 'null'
        baths:
          anyOf:
            - type: number
            - type: 'null'
        full_baths:
          anyOf:
            - type: integer
            - type: 'null'
        partial_baths:
          anyOf:
            - type: integer
            - type: 'null'
        sqft:
          anyOf:
            - type: integer
            - type: 'null'
        lot_size:
          anyOf:
            - type: integer
            - type: 'null'
        year_built:
          anyOf:
            - type: integer
            - type: 'null'
        stories:
          anyOf:
            - type: number
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        days_on_market:
          anyOf:
            - type: integer
            - type: 'null'
        days_on_market_label:
          anyOf:
            - type: string
            - type: 'null'
        hoa_fee:
          anyOf:
            - type: number
            - type: 'null'
        street_address:
          anyOf:
            - type: string
            - type: 'null'
        unit_number:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        full_address:
          anyOf:
            - type: string
            - type: 'null'
        county:
          anyOf:
            - type: string
            - type: 'null'
        apn:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        listing_agents:
          items:
            $ref: '#/components/schemas/RedfinAgent'
          type: array
          default: []
        data_source:
          anyOf:
            - type: string
            - type: 'null'
        amenity_groups:
          items:
            $ref: '#/components/schemas/RedfinAmenityGroup'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RedfinAgent:
      properties:
        '@type':
          type: string
          default: RedfinAgent
        name:
          anyOf:
            - type: string
            - type: 'null'
        broker_name:
          anyOf:
            - type: string
            - type: 'null'
        is_redfin_agent:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    RedfinAmenityGroup:
      properties:
        '@type':
          type: string
          default: RedfinAmenityGroup
        amenities:
          items:
            $ref: '#/components/schemas/RedfinAmenity'
          type: array
          default: []
      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
    RedfinAmenity:
      properties:
        '@type':
          type: string
          default: RedfinAmenity
        name:
          type: string
        values:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````