- Getting Started
- Real Yeti API V1
- 🏡 Real Estate
- 💵 Private Credit
- 🪙 Stablecoin
All Real Estate Protocols Overview
GET
/real_estate/protocols_overview
real_estate
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