Avalanche · Schema

ListTransactionDetailsResponseV2

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
nextPageToken string A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
transactions array
View JSON Schema on GitHub

JSON Schema

ListTransactionDetailsResponseV2.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/ListTransactionDetailsResponseV2.json",
  "title": "ListTransactionDetailsResponseV2",
  "type": "object",
  "properties": {
    "nextPageToken": {
      "type": "string",
      "description": "A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages."
    },
    "transactions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TransactionDetailsV2"
      }
    }
  },
  "required": [
    "transactions"
  ]
}