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

Mint and Burn Metrics

GET
/v1/stablecoins/metrics/mint-burns
Stablecoin Metrics
This endpoint offers historical data on stablecoin minting and burning activities. It provides insights into the supply dynamics of stablecoins, showing how much new supply is being created (minted) and how much is being removed from circulation (burned) over time. This data is essential for understanding the monetary policy of different stablecoins and can be indicative of market demand and overall ecosystem health.

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Query Params
interval
enum<string> 
required
The time interval for the data. Options are 'daily', 'weekly', 'monthly', or 'yearly'.
Allowed values:
dailyweeklymonthlyyearly
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/mint-burns?interval' \
--header 'Authorization;'

Responses

🟢200Successful response with mint and burn points
application/json
Body
data
object 
optional
minted
object 
optional
burned
object 
optional
Example
{
    "data": {
        "minted": {
            "color": "#65FF90",
            "points": [
                {
                    "x": "2023-01-01",
                    "y": 5000000000
                },
                {
                    "x": "2023-02-01",
                    "y": 5500000000
                },
                {
                    "x": "2023-03-01",
                    "y": 6000000000
                },
                {
                    "x": "2023-04-01",
                    "y": 6500000000
                }
            ]
        },
        "burned": {
            "color": "#FF6565",
            "points": [
                {
                    "x": "2023-01-01",
                    "y": 4000000000
                },
                {
                    "x": "2023-02-01",
                    "y": 4200000000
                },
                {
                    "x": "2023-03-01",
                    "y": 4500000000
                },
                {
                    "x": "2023-04-01",
                    "y": 4800000000
                }
            ]
        }
    }
}
🟠400Bad request due to invalid query parameter
🔴500Internal server error
Modified at 2024-08-27 06:36:34
Previous
Market Cap Metrics
Next
Transfer Volume Metrics
Built with