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

Real Estate Data Per Country

GET
/real_estate/properties_by_country
real_estate
This endpoint provides aggregated real estate data grouped by country. It's useful for getting an overview of tokenized real estate distribution and performance across different countries.

Request

Header Params
Authorization
string 
optional

Request 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/properties_by_country' \
--header 'Authorization;'

Responses

🟢200Get real estate data per country
application/json
Body
name
string 
required
points
array[object (ApiCountryDataPoints) {7}] 
required
average_gross_yield
string  | null 
optional
average_gross_yield_num
number <double> | null 
optional
name
string 
required
property_count
string  | null 
optional
property_count_num
number <double> | null 
optional
toal_value
string  | null 
optional
toal_value_num
number <double> | null 
optional
Example
{
    "name": "United States",
    "points": [
        {
            "average_gross_yield": "7.5%",
            "average_gross_yield_num": 7.5,
            "name": "New York",
            "property_count": "250",
            "property_count_num": 250,
            "toal_value": "$500,000,000",
            "toal_value_num": 500000000
        },
        {
            "average_gross_yield": "8.2%",
            "average_gross_yield_num": 8.2,
            "name": "California",
            "property_count": "180",
            "property_count_num": 180,
            "toal_value": "$450,000,000",
            "toal_value_num": 450000000
        }
    ]
}
🔴500Error
Modified at 2024-08-27 06:50:29
Previous
All Real Estate Properties
Next
Real Estate Property by ID
Built with