Real Yeti API
  1. Stablecoin Metrics
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
        • 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
          GET
        • Mint and Burn Metrics
          GET
        • Transfer Volume Metrics
          GET
        • Active Addresses Metrics
          GET
        • Holders Metrics
          GET
        • Average Transaction Value Metrics
          GET
  1. Stablecoin Metrics

Holders Metrics

GET
/v1/stablecoins/metrics/holders
Stablecoin Metrics
This endpoint retrieves historical data on the number of unique holders for different stablecoins. It provides information on how distributed the ownership of each stablecoin is, which can be an indicator of its decentralization and adoption. This data is valuable for assessing the long-term sustainability and potential network effects of different stablecoins.

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Query Params
group_by
enum<string> 
required
The parameter to group the holders points by. Options are 'asset', 'tokens', 'network', 'peggedCurrency', or 'jurisdictionCountry'.
Allowed values:
assettokensnetworkpeggedCurrencyjurisdictionCountry
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://staging.realyeti.xyz/stablecoinapi/api/v1/stablecoins/metrics/holders?group_by' \
--header 'Authorization;'

Responses

🟢200Successful response with Holders points
application/json
Body
data
array [object {2}] 
optional
meta_info
object 
optional
point
array [object {2}] 
optional
Example
{
    "data": [
        {
            "meta_info": {
                "name": "USDT",
                "color": "#26A17B"
            },
            "point": [
                {
                    "x": "2023-01-01",
                    "y": 5000000
                },
                {
                    "x": "2023-02-01",
                    "y": 5200000
                },
                {
                    "x": "2023-03-01",
                    "y": 5400000
                },
                {
                    "x": "2023-04-01",
                    "y": 5600000
                }
            ]
        },
        {
            "meta_info": {
                "name": "USDC",
                "color": "#2775CA"
            },
            "point": [
                {
                    "x": "2023-01-01",
                    "y": 4000000
                },
                {
                    "x": "2023-02-01",
                    "y": 4150000
                },
                {
                    "x": "2023-03-01",
                    "y": 4300000
                },
                {
                    "x": "2023-04-01",
                    "y": 4450000
                }
            ]
        }
    ]
}
🟠400Bad request due to invalid query parameter
🔴500Internal server error
Modified at 2024-08-27 06:42:34
Previous
Active Addresses Metrics
Next
Average Transaction Value Metrics
Built with