Pendle · Schema

VePendleExtendedDataResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
avgLockDuration number Average lock duration in days
totalPendleLocked number Total amount of PENDLE tokens locked in vePENDLE
vePendleSupply number Total supply of vePENDLE tokens
totalProjectedVotes number Total projected votes for next epoch
totalCurrentVotes number Total votes in current epoch
pools array List of voting pools with their APY, fees, and voting data
tokenSupply object Current circulating and total supply of PENDLE tokens
monthlyRevenue object Monthly protocol revenue breakdown and trends
View JSON Schema on GitHub

JSON Schema

VePendleExtendedDataResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VePendleExtendedDataResponse",
  "type": "object",
  "properties": {
    "avgLockDuration": {
      "type": "number",
      "description": "Average lock duration in days"
    },
    "totalPendleLocked": {
      "type": "number",
      "description": "Total amount of PENDLE tokens locked in vePENDLE"
    },
    "vePendleSupply": {
      "type": "number",
      "description": "Total supply of vePENDLE tokens"
    },
    "totalProjectedVotes": {
      "type": "number",
      "description": "Total projected votes for next epoch"
    },
    "totalCurrentVotes": {
      "type": "number",
      "description": "Total votes in current epoch"
    },
    "pools": {
      "description": "List of voting pools with their APY, fees, and voting data",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PoolV2Response"
      }
    },
    "tokenSupply": {
      "description": "Current circulating and total supply of PENDLE tokens",
      "allOf": [
        {
          "$ref": "#/components/schemas/PendleTokenSupplyResponse"
        }
      ]
    },
    "monthlyRevenue": {
      "description": "Monthly protocol revenue breakdown and trends",
      "allOf": [
        {
          "$ref": "#/components/schemas/GetMonthlyRevenueResponse"
        }
      ]
    }
  },
  "required": [
    "avgLockDuration",
    "totalPendleLocked",
    "vePendleSupply",
    "totalProjectedVotes",
    "totalCurrentVotes",
    "pools"
  ]
}