Blockfrost · JSON Structure

Blockfrost Block Content Addresses Structure

block_content_addresses schema from Blockfrost API

Type: array Properties: 0
BlockchainCardanoCryptocurrencyDAppsNFTWeb3

block_content_addresses is a JSON Structure definition published by Blockfrost. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockfrost/refs/heads/main/json-structure/blockfrost-block-content-addresses-structure.json",
  "name": "block_content_addresses",
  "description": "block_content_addresses schema from Blockfrost API",
  "type": "array",
  "items": {
    "required": [
      "address",
      "transactions"
    ],
    "type": "object",
    "properties": {
      "address": {
        "description": "Address that was affected in the specified block",
        "type": "string"
      },
      "transactions": {
        "description": "List of transactions containing the address either in their inputs or outputs. Sorted by transaction index within a block, ascending.",
        "type": "array",
        "items": {
          "required": [
            "tx_hash"
          ],
          "type": "object",
          "properties": {
            "tx_hash": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}