Real Yeti API
  1. Timeseries
Real Yeti API
  • Getting Started
    • 🗯️ Introduction
    • 🔑 Setting Up Your API Key
    • 🔐 Authentication
    • 🔎 Endpoint overview
  • Real Yeti API V1
    • 🏡 Real Estate
      • Real Estate Overview
      • All Real Estate Properties
      • Real Estate Data Per Country
      • Real Estate Property by ID
      • All Real Estate Paginated Details
      • All Real Estate Protocols Overview
      • All Real Estate by Protocol
    • 💵 Private Credit
      • Showcase
        • Protocol Financial Data
        • Countries
        • Investments
        • Investment by ID
        • Loans
        • Loan by ID
        • Overview
        • Sectors
      • Timeseries
        • Active Loans by Network
          GET
        • Active Loans by Protocol
          GET
        • Total Loans by Network
          GET
        • Total Loans by Protocol
          GET
    • 🪙 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. Timeseries

Total Loans by Protocol

GET
/showcase/timeseries/total_loans_by_protocol
timeseries
This endpoint offers time series data on the total number of loans, grouped by protocol. It allows for analysis of the growth and market share of different lending protocols over time.

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
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/showcase/timeseries/total_loans_by_protocol' \
--header 'Authorization;'

Responses

🟢200Get total loans by protocol timeseries data
application/json
Body
results
array[object (TimeSeriesData) {3}] 
required
group
object (TimeSeriesGroup) 
required
measure
object (TimeSeriesMeasure) 
required
points
array[object (DataPoint) {2}] 
required
Example
{
    "results": [
        {
            "group": {
                "color": "#FFD700",
                "id": 1,
                "name": "Goldfinch",
                "type": "rwa_lending_protocol"
            },
            "measure": {
                "id": 1,
                "name": "Total Loans",
                "slug": "total_loans",
                "unit": "count"
            },
            "points": [
                {
                    "x": "2023-01-01",
                    "y": 12
                },
                {
                    "x": "2023-02-01",
                    "y": 14
                },
                {
                    "x": "2023-03-01",
                    "y": 15
                },
                {
                    "x": "2023-04-01",
                    "y": 17
                }
            ]
        },
        {
            "group": {
                "color": "#4B0082",
                "id": 2,
                "name": "Centrifuge",
                "type": "rwa_lending_protocol"
            },
            "measure": {
                "id": 1,
                "name": "Total Loans",
                "slug": "total_loans",
                "unit": "count"
            },
            "points": [
                {
                    "x": "2023-01-01",
                    "y": 8
                },
                {
                    "x": "2023-02-01",
                    "y": 9
                },
                {
                    "x": "2023-03-01",
                    "y": 11
                },
                {
                    "x": "2023-04-01",
                    "y": 13
                }
            ]
        },
        {
            "group": {
                "color": "#008080",
                "id": 3,
                "name": "Maple Finance",
                "type": "rwa_lending_protocol"
            },
            "measure": {
                "id": 1,
                "name": "Total Loans",
                "slug": "total_loans",
                "unit": "count"
            },
            "points": [
                {
                    "x": "2023-01-01",
                    "y": 6
                },
                {
                    "x": "2023-02-01",
                    "y": 7
                },
                {
                    "x": "2023-03-01",
                    "y": 8
                },
                {
                    "x": "2023-04-01",
                    "y": 9
                }
            ]
        }
    ]
}
🔴500Error
Modified at 2024-08-27 06:49:40
Previous
Total Loans by Network
Next
Market Intelligence
Built with