Pendle · Schema
TransactionsV5Response
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| total | number | Total number of transactions available |
| resumeToken | string | Resume token for pagination. Use this to continue a previous query. Use this token in the next request. Can be undefined if the query is at the end of the results. |
| limit | number | Maximum number of results returned |
| skip | number | Number of results skipped for pagination |
| results | array | List of transactions |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "TransactionsV5Response",
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total number of transactions available"
},
"resumeToken": {
"type": "string",
"description": "Resume token for pagination. Use this to continue a previous query. Use this token in the next request. Can be undefined if the query is at the end of the results."
},
"limit": {
"type": "number",
"description": "Maximum number of results returned"
},
"skip": {
"type": "number",
"description": "Number of results skipped for pagination"
},
"results": {
"description": "List of transactions",
"type": "array",
"items": {
"$ref": "#/components/schemas/TransactionV5Response"
}
}
},
"required": [
"total",
"limit",
"skip",
"results"
]
}