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

Market Cap Metrics

GET
/v1/stablecoins/metrics/market-caps
Stablecoin Metrics
This endpoint retrieves historical market capitalization data for stablecoins. It provides time-series data that allows users to track the growth or decline of different stablecoins over time. This information is crucial for understanding market trends, comparing the performance of various stablecoins, and identifying potential market shifts or emerging players in the stablecoin space.

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Query Params
group_by
enum<string> 
required
The parameter to group the market cap 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/market-caps?group_by' \
--header 'Authorization;'

Responses

🟢200Successful response with market cap 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": 66500000000
                },
                {
                    "x": "2023-02-01",
                    "y": 68000000000
                },
                {
                    "x": "2023-03-01",
                    "y": 69500000000
                },
                {
                    "x": "2023-04-01",
                    "y": 71000000000
                }
            ]
        },
        {
            "meta_info": {
                "name": "USDC",
                "color": "#2775CA"
            },
            "point": [
                {
                    "x": "2023-01-01",
                    "y": 44000000000
                },
                {
                    "x": "2023-02-01",
                    "y": 45500000000
                },
                {
                    "x": "2023-03-01",
                    "y": 47000000000
                },
                {
                    "x": "2023-04-01",
                    "y": 48500000000
                }
            ]
        }
    ]
}
🟠400Bad request due to invalid query parameter
🔴500Internal server error
Modified at 2024-08-27 06:36:14
Previous
Stablecoins Analysis
Next
Mint and Burn Metrics
Built with