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

Active Loans by Protocol

GET
/showcase/timeseries/active_loans_by_protocol
timeseries
This endpoint offers time series data on active loans, grouped by protocol. It allows for comparison of loan activity across 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/active_loans_by_protocol' \
--header 'Authorization;'

Responses

🟢200Get active 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": "Active Loans",
                "slug": "active_loans",
                "unit": "count"
            },
            "points": [
                {
                    "x": "2023-01-01",
                    "y": 10
                },
                {
                    "x": "2023-02-01",
                    "y": 12
                },
                {
                    "x": "2023-03-01",
                    "y": 13
                },
                {
                    "x": "2023-04-01",
                    "y": 15
                }
            ]
        },
        {
            "group": {
                "color": "#4B0082",
                "id": 2,
                "name": "Centrifuge",
                "type": "rwa_lending_protocol"
            },
            "measure": {
                "id": 1,
                "name": "Active Loans",
                "slug": "active_loans",
                "unit": "count"
            },
            "points": [
                {
                    "x": "2023-01-01",
                    "y": 7
                },
                {
                    "x": "2023-02-01",
                    "y": 8
                },
                {
                    "x": "2023-03-01",
                    "y": 10
                },
                {
                    "x": "2023-04-01",
                    "y": 11
                }
            ]
        }
    ]
}
🔴500Error
Modified at 2024-08-27 06:49:11
Previous
Active Loans by Network
Next
Total Loans by Network
Built with