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 Protocols Overview

GET
/real_estate/protocols_overview
real_estate
This endpoint provides an overview of all real estate protocols, offering insights into the performance and scale of different tokenization platforms.

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

Responses

🟢200Get all real estate protocols overview
application/json
Body
pagination
object (ApiPagination) 
required
current_page
integer <int32>
required
per_page
integer <int32>
required
total_pages
integer <int32>
required
total_records
integer <int32>
required
results
array[object (ApiPropertyProtocol) {11}] 
required
average_gross_yield
string  | null 
optional
average_gross_yield_num
number <double> | null 
optional
average_net_yield
string  | null 
optional
average_net_yield_num
number <double> | null 
optional
currency
string  | null 
optional
network
string  | null 
optional
protocol
string 
required
total_number_properties_on_chain
string  | null 
optional
total_number_properties_on_chain_num
number <double> | null 
optional
total_value_locked
string  | null 
optional
total_value_locked_num
number <double> | null 
optional
Example
{
    "pagination": {
        "current_page": 1,
        "per_page": 10,
        "total_pages": 1,
        "total_records": 3
    },
    "results": [
        {
            "average_gross_yield": "7.5%",
            "average_gross_yield_num": 7.5,
            "average_net_yield": "6.2%",
            "average_net_yield_num": 6.2,
            "currency": "USD",
            "network": "Ethereum",
            "protocol": "RealT",
            "total_number_properties_on_chain": "250",
            "total_number_properties_on_chain_num": 250,
            "total_value_locked": "$500,000,000",
            "total_value_locked_num": 500000000
        },
        {
            "average_gross_yield": "8.1%",
            "average_gross_yield_num": 8.1,
            "average_net_yield": "6.8%",
            "average_net_yield_num": 6.8,
            "currency": "USD",
            "network": "Polygon",
            "protocol": "Lofty AI",
            "total_number_properties_on_chain": "180",
            "total_number_properties_on_chain_num": 180,
            "total_value_locked": "$350,000,000",
            "total_value_locked_num": 350000000
        },
        {
            "average_gross_yield": "7.8%",
            "average_gross_yield_num": 7.8,
            "average_net_yield": "6.5%",
            "average_net_yield_num": 6.5,
            "currency": "USD",
            "network": "Algorand",
            "protocol": "Akru",
            "total_number_properties_on_chain": "100",
            "total_number_properties_on_chain_num": 100,
            "total_value_locked": "$200,000,000",
            "total_value_locked_num": 200000000
        }
    ]
}
🔴500Error
Modified at 2024-08-27 06:51:08
Previous
All Real Estate Paginated Details
Next
All Real Estate by Protocol
Built with