Transpose · Schema
Token Transfer
An ERC-20 or ERC-777 fungible token transfer event including mints, sends, and burns.
BlockchainNFTCryptocurrencyWeb3EthereumToken TransfersSmart ContractsHistorical DataDeFiDEX
Properties
| Name | Type | Description |
|---|---|---|
| transaction_hash | string | Hash of the transaction containing this transfer. |
| log_index | integer | Index of the event log within the transaction. |
| block_number | integer | Block number containing this transfer. |
| timestamp | string | ISO-8601 timestamp when this transfer occurred. |
| contract_address | string | The token contract address. |
| from_address | string | Sender address. Zero address indicates a mint. |
| to_address | string | Recipient address. Zero address indicates a burn. |
| quantity | string | Amount transferred in the token's smallest unit (as string to avoid precision loss). |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.transpose.io/schemas/token-transfer",
"title": "Token Transfer",
"description": "An ERC-20 or ERC-777 fungible token transfer event including mints, sends, and burns.",
"type": "object",
"properties": {
"transaction_hash": {
"type": "string",
"description": "Hash of the transaction containing this transfer.",
"pattern": "^0x[0-9a-fA-F]{64}$"
},
"log_index": {
"type": "integer",
"description": "Index of the event log within the transaction.",
"minimum": 0
},
"block_number": {
"type": "integer",
"description": "Block number containing this transfer.",
"minimum": 0
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "ISO-8601 timestamp when this transfer occurred."
},
"contract_address": {
"type": "string",
"description": "The token contract address.",
"pattern": "^0x[0-9a-fA-F]{40}$"
},
"from_address": {
"type": "string",
"description": "Sender address. Zero address indicates a mint.",
"pattern": "^0x[0-9a-fA-F]{40}$"
},
"to_address": {
"type": "string",
"description": "Recipient address. Zero address indicates a burn.",
"pattern": "^0x[0-9a-fA-F]{40}$"
},
"quantity": {
"type": "string",
"description": "Amount transferred in the token's smallest unit (as string to avoid precision loss)."
}
},
"required": [
"transaction_hash",
"block_number",
"timestamp",
"contract_address",
"from_address",
"to_address",
"quantity"
],
"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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/token-transfer"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.