Pendle · Schema

MarketBasicMetadataResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
id string
chainId number
address string
symbol string
expiry string
pt object
yt object
sy object
lp object
accountingAsset object
underlyingAsset object
basePricingAsset object Same as accountingAsset
protocol string
underlyingPool string
proSymbol string
proIcon string
assetRepresentation string
isWhitelistedPro boolean
isWhitelistedSimple boolean
votable boolean
isActive boolean
isWhitelistedLimitOrder boolean
accentColor string
totalPt number
totalSy number
totalLp number
liquidity object
tradingVolume object
underlyingInterestApy number
underlyingRewardApy number
underlyingApy number
impliedApy number
ytFloatingApy number
ptDiscount number
swapFeeApy number
pendleApy number
arbApy number
aggregatedApy number
maxBoostedApy number
lpRewardApy number
voterApy number
ytRoi number
ptRoi number
dataUpdatedAt string
categoryIds array
timestamp string
whitelistedProAt string
scalarRoot number
initialAnchor number
extendedInfo object Additional market data, only available when market is whitelisted.
isFeatured boolean
isPopular boolean
tvlThresholdTimestamp string
isNew boolean Market which whitelisted in the last 2 weeks will have isNew==true
name string
simpleName string
simpleSymbol string
simpleIcon string
proName string
farmName string
farmSymbol string
farmSimpleName string
farmSimpleSymbol string
farmSimpleIcon string
farmProName string
farmProSymbol string
farmProIcon string
View JSON Schema on GitHub

JSON Schema

MarketBasicMetadataResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MarketBasicMetadataResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "chainId": {
      "type": "number"
    },
    "address": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "expiry": {
      "format": "date-time",
      "type": "string"
    },
    "pt": {
      "$ref": "#/components/schemas/AssetResponse"
    },
    "yt": {
      "$ref": "#/components/schemas/AssetResponse"
    },
    "sy": {
      "$ref": "#/components/schemas/AssetResponse"
    },
    "lp": {
      "$ref": "#/components/schemas/AssetResponse"
    },
    "accountingAsset": {
      "$ref": "#/components/schemas/AssetResponse"
    },
    "underlyingAsset": {
      "$ref": "#/components/schemas/AssetResponse"
    },
    "basePricingAsset": {
      "nullable": true,
      "description": "Same as accountingAsset",
      "deprecated": true,
      "allOf": [
        {
          "$ref": "#/components/schemas/AssetResponse"
        }
      ]
    },
    "protocol": {
      "type": "string",
      "nullable": true
    },
    "underlyingPool": {
      "type": "string",
      "nullable": true
    },
    "proSymbol": {
      "type": "string",
      "nullable": true
    },
    "proIcon": {
      "type": "string",
      "nullable": true
    },
    "assetRepresentation": {
      "type": "string"
    },
    "isWhitelistedPro": {
      "type": "boolean"
    },
    "isWhitelistedSimple": {
      "type": "boolean",
      "deprecated": true
    },
    "votable": {
      "type": "boolean"
    },
    "isActive": {
      "type": "boolean",
      "deprecated": true
    },
    "isWhitelistedLimitOrder": {
      "type": "boolean"
    },
    "accentColor": {
      "type": "string",
      "nullable": true
    },
    "totalPt": {
      "type": "number",
      "nullable": true
    },
    "totalSy": {
      "type": "number",
      "nullable": true
    },
    "totalLp": {
      "type": "number",
      "nullable": true
    },
    "liquidity": {
      "nullable": true,
      "allOf": [
        {
          "$ref": "#/components/schemas/ValuationResponse"
        }
      ]
    },
    "tradingVolume": {
      "nullable": true,
      "allOf": [
        {
          "$ref": "#/components/schemas/ValuationResponse"
        }
      ]
    },
    "underlyingInterestApy": {
      "type": "number",
      "nullable": true
    },
    "underlyingRewardApy": {
      "type": "number",
      "nullable": true
    },
    "underlyingApy": {
      "type": "number",
      "nullable": true
    },
    "impliedApy": {
      "type": "number",
      "nullable": true
    },
    "ytFloatingApy": {
      "type": "number",
      "nullable": true
    },
    "ptDiscount": {
      "type": "number",
      "nullable": true
    },
    "swapFeeApy": {
      "type": "number",
      "nullable": true
    },
    "pendleApy": {
      "type": "number",
      "nullable": true
    },
    "arbApy": {
      "type": "number",
      "nullable": true
    },
    "aggregatedApy": {
      "type": "number",
      "nullable": true
    },
    "maxBoostedApy": {
      "type": "number",
      "nullable": true
    },
    "lpRewardApy": {
      "type": "number",
      "nullable": true
    },
    "voterApy": {
      "type": "number",
      "nullable": true
    },
    "ytRoi": {
      "type": "number",
      "nullable": true
    },
    "ptRoi": {
      "type": "number",
      "nullable": true
    },
    "dataUpdatedAt": {
      "format": "date-time",
      "type": "string",
      "nullable": true
    },
    "categoryIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "timestamp": {
      "format": "date-time",
      "type": "string"
    },
    "whitelistedProAt": {
      "format": "date-time",
      "type": "string",
      "nullable": true
    },
    "scalarRoot": {
      "type": "number"
    },
    "initialAnchor": {
      "type": "number"
    },
    "extendedInfo": {
      "description": "Additional market data, only available when market is whitelisted.",
      "allOf": [
        {
          "$ref": "#/components/schemas/MarketExtendedInfoResponse"
        }
      ]
    },
    "isFeatured": {
      "type": "boolean",
      "nullable": true
    },
    "isPopular": {
      "type": "boolean",
      "nullable": true
    },
    "tvlThresholdTimestamp": {
      "format": "date-time",
      "type": "string",
      "nullable": true
    },
    "isNew": {
      "type": "boolean",
      "description": "Market which whitelisted in the last 2 weeks will have isNew==true"
    },
    "name": {
      "type": "string"
    },
    "simpleName": {
      "type": "string"
    },
    "simpleSymbol": {
      "type": "string"
    },
    "simpleIcon": {
      "type": "string"
    },
    "proName": {
      "type": "string"
    },
    "farmName": {
      "type": "string"
    },
    "farmSymbol": {
      "type": "string"
    },
    "farmSimpleName": {
      "type": "string"
    },
    "farmSimpleSymbol": {
      "type": "string"
    },
    "farmSimpleIcon": {
      "type": "string"
    },
    "farmProName": {
      "type": "string"
    },
    "farmProSymbol": {
      "type": "string"
    },
    "farmProIcon": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "chainId",
    "address",
    "symbol",
    "expiry",
    "pt",
    "yt",
    "sy",
    "lp",
    "accountingAsset",
    "underlyingAsset",
    "assetRepresentation",
    "isWhitelistedPro",
    "isWhitelistedSimple",
    "votable",
    "isActive",
    "isWhitelistedLimitOrder",
    "categoryIds",
    "timestamp",
    "scalarRoot",
    "initialAnchor",
    "extendedInfo",
    "isNew",
    "name",
    "simpleName",
    "simpleSymbol",
    "simpleIcon",
    "proName",
    "farmName",
    "farmSymbol",
    "farmSimpleName",
    "farmSimpleSymbol",
    "farmSimpleIcon",
    "farmProName",
    "farmProSymbol",
    "farmProIcon"
  ]
}