Pendle · Schema

MarketApyHistoryResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
timestamp string Timestamp of the APY data point
underlyingApy number APY of the underlying asset
impliedApy number Implied APY of market
View JSON Schema on GitHub

JSON Schema

MarketApyHistoryResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MarketApyHistoryResponse",
  "type": "object",
  "properties": {
    "timestamp": {
      "format": "date-time",
      "type": "string",
      "description": "Timestamp of the APY data point"
    },
    "underlyingApy": {
      "type": "number",
      "description": "APY of the underlying asset"
    },
    "impliedApy": {
      "type": "number",
      "description": "Implied APY of market"
    }
  },
  "required": [
    "timestamp",
    "underlyingApy",
    "impliedApy"
  ]
}