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"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/MarketBasicMetadataResponse"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.