Real Yeti API
  1. 🏡 Real Estate
Real Yeti API
  • Getting Started
    • 🗯️ Introduction
    • 🔑 Setting Up Your API Key
    • 🔐 Authentication
    • 🔎 Endpoint overview
  • Real Yeti API V1
    • 🏡 Real Estate
      • Real Estate Overview
        GET
      • All Real Estate Properties
        GET
      • Real Estate Data Per Country
        GET
      • Real Estate Property by ID
        GET
      • All Real Estate Paginated Details
        GET
      • All Real Estate Protocols Overview
        GET
      • All Real Estate by Protocol
        GET
    • 💵 Private Credit
      • Showcase
        • Protocol Financial Data
        • Countries
        • Investments
        • Investment by ID
        • Loans
        • Loan by ID
        • Overview
        • Sectors
      • Timeseries
        • Active Loans by Network
        • Active Loans by Protocol
        • Total Loans by Network
        • Total Loans by Protocol
    • 🪙 Stablecoin
      • Market Intelligence
        • Market Intelligence
        • Marketcap by Network
        • Stablecoins Overview
        • Stablecoins Analysis
      • Stablecoin Metrics
        • Market Cap Metrics
        • Mint and Burn Metrics
        • Transfer Volume Metrics
        • Active Addresses Metrics
        • Holders Metrics
        • Average Transaction Value Metrics
  1. 🏡 Real Estate

All Real Estate Paginated Details

GET
/real_estate/property_details
This endpoint provides a paginated list of real estate properties with key details. It's useful for displaying property listings with essential information.

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://docs.joinclutch.xyz/api/real_estate/property_details?page&per_page&sort&filter' \
--header 'Authorization;'

Responses

🟢200Get all real estate paginated details
application/json
Body

Example
{
    "pagination": {
        "current_page": 1,
        "per_page": 10,
        "total_pages": 5,
        "total_records": 50
    },
    "results": [
        {
            "address": "123 Main St, New York, NY 10001",
            "country": "United States",
            "gross_rent_month": "$25,000",
            "gross_rent_month_num": 25000,
            "gross_rent_year": "$300,000",
            "gross_rent_year_num": 300000,
            "letting_status": "Occupied",
            "listing_date": "2023-08-01",
            "market_value": "$5,000,000",
            "market_value_num": 5000000,
            "number_of_units": "50",
            "number_of_units_num": 50,
            "postcode": "10001",
            "property_id": "PROP-001",
            "property_type": "Multi-family",
            "protocol": "RealT"
        },
        {
            "address": "456 Oak Ave, Los Angeles, CA 90001",
            "country": "United States",
            "gross_rent_month": "$18,000",
            "gross_rent_month_num": 18000,
            "gross_rent_year": "$216,000",
            "gross_rent_year_num": 216000,
            "letting_status": "Vacant",
            "listing_date": "2023-07-15",
            "market_value": "$3,500,000",
            "market_value_num": 3500000,
            "number_of_units": "30",
            "number_of_units_num": 30,
            "postcode": "90001",
            "property_id": "PROP-002",
            "property_type": "Apartment Complex",
            "protocol": "Lofty AI"
        }
    ]
}
🔴500Error
Modified at 2024-08-27 06:50:55
Previous
Real Estate Property by ID
Next
All Real Estate Protocols Overview
Built with