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

Average Transaction Value Metrics

GET
/v1/stablecoins/metrics/average-transaction-values
Stablecoin Metrics
This endpoint offers historical data on the average transaction values for stablecoins. It provides insights into how stablecoins are being used – whether for small, everyday transactions or larger, potentially more institutional transfers. This information can help in understanding the primary use cases of different stablecoins and how they might be evolving over time.

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 average transaction 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/average-transaction-values?interval&group_by' \
--header 'Authorization;'

Responses

🟢200Successful response with Average Transaction 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": 15000
                },
                {
                    "x": "2023-02-01",
                    "y": 15500
                },
                {
                    "x": "2023-03-01",
                    "y": 16000
                },
                {
                    "x": "2023-04-01",
                    "y": 16500
                }
            ]
        },
        {
            "meta_info": {
                "name": "USDC",
                "color": "#2775CA"
            },
            "point": [
                {
                    "x": "2023-01-01",
                    "y": 12000
                },
                {
                    "x": "2023-02-01",
                    "y": 12500
                },
                {
                    "x": "2023-03-01",
                    "y": 13000
                },
                {
                    "x": "2023-04-01",
                    "y": 13500
                }
            ]
        },
        {
            "meta_info": {
                "name": "DAI",
                "color": "#F4B731"
            },
            "point": [
                {
                    "x": "2023-01-01",
                    "y": 10000
                },
                {
                    "x": "2023-02-01",
                    "y": 10300
                },
                {
                    "x": "2023-03-01",
                    "y": 10600
                },
                {
                    "x": "2023-04-01",
                    "y": 11000
                }
            ]
        }
    ]
}
🟠400Bad request due to invalid query parameter
🔴500Internal server error
Modified at 2024-08-27 06:45:41
Previous
Holders Metrics
Built with