Transpose · Schema

Transaction

A blockchain transaction on an EVM-compatible chain.

BlockchainNFTCryptocurrencyWeb3EthereumToken TransfersSmart ContractsHistorical DataDeFiDEX

Properties

Name Type Description
transaction_hash string The unique transaction hash (32-byte hex string prefixed with 0x).
block_number integer Block number containing this transaction.
timestamp string ISO-8601 timestamp of the block that included this transaction.
from_address string The sender's blockchain address.
to_address stringnull The recipient's address, or null for contract creation transactions.
value string Native token value transferred in wei (as a string to preserve precision).
gas_price string Gas price in wei.
gas_used integer Actual gas units consumed by this transaction.
gas_limit integer Maximum gas units the sender was willing to pay.
status integer Transaction execution status: 1 = success, 0 = failure.
method_id stringnull First 4 bytes of call data (hex) identifying the called contract method.
nonce integer Sender's transaction count at time of inclusion.
View JSON Schema on GitHub

JSON Schema

transaction.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.transpose.io/schemas/transaction",
  "title": "Transaction",
  "description": "A blockchain transaction on an EVM-compatible chain.",
  "type": "object",
  "properties": {
    "transaction_hash": {
      "type": "string",
      "description": "The unique transaction hash (32-byte hex string prefixed with 0x).",
      "pattern": "^0x[0-9a-fA-F]{64}$"
    },
    "block_number": {
      "type": "integer",
      "description": "Block number containing this transaction.",
      "minimum": 0
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "ISO-8601 timestamp of the block that included this transaction."
    },
    "from_address": {
      "type": "string",
      "description": "The sender's blockchain address.",
      "pattern": "^0x[0-9a-fA-F]{40}$"
    },
    "to_address": {
      "type": ["string", "null"],
      "description": "The recipient's address, or null for contract creation transactions.",
      "pattern": "^0x[0-9a-fA-F]{40}$"
    },
    "value": {
      "type": "string",
      "description": "Native token value transferred in wei (as a string to preserve precision)."
    },
    "gas_price": {
      "type": "string",
      "description": "Gas price in wei."
    },
    "gas_used": {
      "type": "integer",
      "description": "Actual gas units consumed by this transaction.",
      "minimum": 0
    },
    "gas_limit": {
      "type": "integer",
      "description": "Maximum gas units the sender was willing to pay.",
      "minimum": 0
    },
    "status": {
      "type": "integer",
      "description": "Transaction execution status: 1 = success, 0 = failure.",
      "enum": [0, 1]
    },
    "method_id": {
      "type": ["string", "null"],
      "description": "First 4 bytes of call data (hex) identifying the called contract method.",
      "pattern": "^0x[0-9a-fA-F]{8}$"
    },
    "nonce": {
      "type": "integer",
      "description": "Sender's transaction count at time of inclusion.",
      "minimum": 0
    }
  },
  "required": ["transaction_hash", "block_number", "timestamp", "from_address"],
  "additionalProperties": true
}

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/transaction"
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 email required.

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