Pendle · Schema

MarketData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
name string market name
address string market address
expiry string market expiry date
pt string market pt id
yt string market yt id
sy string market sy id
underlyingAsset string market underlying asset id
details object Market details including liquidity, APY, fee rate, and yield range
isNew boolean Whether the market is new
isPrime boolean Whether the market is prime
timestamp string Market deployed timestamp
lpWrapper string LP wrapper address
categoryIds array Market category IDs
View JSON Schema on GitHub

JSON Schema

MarketData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MarketData",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "market name",
      "example": "crvUSD"
    },
    "address": {
      "type": "string",
      "description": "market address",
      "example": "0x386f90eb964a477498b528a39d9405e73ed4032b"
    },
    "expiry": {
      "type": "string",
      "description": "market expiry date",
      "example": "2024-03-28T00:00:00.000Z"
    },
    "pt": {
      "type": "string",
      "description": "market pt id",
      "example": "1-0xb87511364014c088e30f872efc4a00d7efb843ac"
    },
    "yt": {
      "type": "string",
      "description": "market yt id",
      "example": "1-0xed97f94dd94255637a054098604e0201c442a3fd"
    },
    "sy": {
      "type": "string",
      "description": "market sy id",
      "example": "1-0xe05082b184a34668cd8a904d85fa815802bbb04c"
    },
    "underlyingAsset": {
      "type": "string",
      "description": "market underlying asset id",
      "example": "1-0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32"
    },
    "details": {
      "description": "Market details including liquidity, APY, fee rate, and yield range",
      "allOf": [
        {
          "$ref": "#/components/schemas/MarketDetails"
        }
      ]
    },
    "isNew": {
      "type": "boolean",
      "description": "Whether the market is new"
    },
    "isPrime": {
      "type": "boolean",
      "description": "Whether the market is prime"
    },
    "timestamp": {
      "format": "date-time",
      "type": "string",
      "description": "Market deployed timestamp"
    },
    "lpWrapper": {
      "type": "string",
      "description": "LP wrapper address"
    },
    "categoryIds": {
      "description": "Market category IDs",
      "example": [
        "btc",
        "stables"
      ],
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "name",
    "address",
    "expiry",
    "pt",
    "yt",
    "sy",
    "underlyingAsset",
    "details",
    "isNew",
    "isPrime",
    "timestamp"
  ]
}