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 by Protocol

GET
/real_estate/tokenised_real_estate
This endpoint provides time-series data of tokenized real estate value across different protocols. It's useful for analyzing trends and comparing protocol performance over time.

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/tokenised_real_estate?time_range' \
--header 'Authorization;'

Responses

🟢200Get all real estate by protocol
application/json
Body

Example
[
    {
        "color": "#4A90E2",
        "name": "RealT",
        "points": [
            {
                "x": "2023-01-01",
                "y": "100000000",
                "y_num": 100000000
            },
            {
                "x": "2023-02-01",
                "y": "150000000",
                "y_num": 150000000
            },
            {
                "x": "2023-03-01",
                "y": "200000000",
                "y_num": 200000000
            },
            {
                "x": "2023-04-01",
                "y": "250000000",
                "y_num": 250000000
            }
        ],
        "protocol": "RealT",
        "time_range": "3 months"
    },
    {
        "color": "#50E3C2",
        "name": "Lofty AI",
        "points": [
            {
                "x": "2023-01-01",
                "y": "80000000",
                "y_num": 80000000
            },
            {
                "x": "2023-02-01",
                "y": "100000000",
                "y_num": 100000000
            },
            {
                "x": "2023-03-01",
                "y": "130000000",
                "y_num": 130000000
            },
            {
                "x": "2023-04-01",
                "y": "170000000",
                "y_num": 170000000
            }
        ],
        "protocol": "Lofty AI",
        "time_range": "3 months"
    },
    {
        "color": "#FF6B6B",
        "name": "Akru",
        "points": [
            {
                "x": "2023-01-01",
                "y": "50000000",
                "y_num": 50000000
            },
            {
                "x": "2023-02-01",
                "y": "70000000",
                "y_num": 70000000
            },
            {
                "x": "2023-03-01",
                "y": "90000000",
                "y_num": 90000000
            },
            {
                "x": "2023-04-01",
                "y": "120000000",
                "y_num": 120000000
            }
        ],
        "protocol": "Akru",
        "time_range": "3 months"
    }
]
🔴500Error
Modified at 2024-08-27 06:51:21
Previous
All Real Estate Protocols Overview
Next
Protocol Financial Data
Built with