getAccountHistory
Retrieve transaction history for a specific account on any supported blockchain network. Use chainId and accountId to access detailed records via a standardized multi-chain API.
Instructions
Get the transaction history for an account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | Yes | ||
chainId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountId": {
"type": "string"
},
"chainId": {
"type": "string"
}
},
"required": [
"chainId",
"accountId"
],
"type": "object"
}