- Getting Started
- Real Yeti API V1
- 🏡 Real Estate
- 💵 Private Credit
- 🪙 Stablecoin
All Real Estate by Protocol
GET
/real_estate/tokenised_real_estate
real_estate
Request
Query Params
time_range
string | null
optional
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/tokenised_real_estate?time_range' \
--header 'Authorization;'
Responses
🟢200Get all real estate by protocol
application/json
Body
array of:
color
string
required
name
string
required
points
array[object (ApiDataPoints) {3}]
required
x
string
required
y
string
required
y_num
number <double>
required
protocol
string
required
time_range
string
required
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