Pendle · Schema

TransactionsResponseEntity

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
total number Total number of matching transactions
results array Paginated list of transactions
View JSON Schema on GitHub

JSON Schema

TransactionsResponseEntity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransactionsResponseEntity",
  "type": "object",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total number of matching transactions"
    },
    "results": {
      "description": "Paginated list of transactions",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PnLTransactionEntity"
      }
    }
  },
  "required": [
    "total",
    "results"
  ]
}