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

Transfer Volume Metrics

GET
/v1/stablecoins/metrics/transfer-volumes
Stablecoin Metrics
This endpoint supplies historical transfer volume data for stablecoins. It shows the total value of stablecoins being moved over time, which is a key indicator of economic activity within the stablecoin ecosystem. This data can be used to gauge the adoption and actual usage of stablecoins in transactions, rather than just holdings.

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
group_by
enum<string> 
optional
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/transfer-volumes?interval&group_by' \
--header 'Authorization;'

Responses

🟢200Successful response with Transfer Volume points
application/json
Body
data
array [object {2}] 
required
meta_info
object 
required
points
array [object {2}] 
required
Example
{
    "data": [
        {
            "meta_info": {
                "name": "USDT",
                "color": "#26A17B"
            },
            "point": [
                {
                    "x": "2023-01-01",
                    "y": 150000000000
                },
                {
                    "x": "2023-02-01",
                    "y": 160000000000
                },
                {
                    "x": "2023-03-01",
                    "y": 170000000000
                },
                {
                    "x": "2023-04-01",
                    "y": 180000000000
                }
            ]
        },
        {
            "meta_info": {
                "name": "USDC",
                "color": "#2775CA"
            },
            "point": [
                {
                    "x": "2023-01-01",
                    "y": 100000000000
                },
                {
                    "x": "2023-02-01",
                    "y": 110000000000
                },
                {
                    "x": "2023-03-01",
                    "y": 120000000000
                },
                {
                    "x": "2023-04-01",
                    "y": 130000000000
                }
            ]
        }
    ]
}
🟠400Bad request due to invalid query parameter
🔴500Internal server error
Modified at 2024-08-27 06:41:51
Previous
Mint and Burn Metrics
Next
Active Addresses Metrics
Built with