Skip to main content

Call

A call in an extrinsic.

hashHash256Hex (string)required

32-byte Blake2b-256, always 0x-prefixed and lowercase in responses. Inputs elsewhere may accept mixed case or missing 0x; the API normalizes outputs.

Possible values: Value must match regular expression ^0x[a-f0-9]{64}$

Example: 0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3
blockHashHash256Hex (string)required

32-byte Blake2b-256, always 0x-prefixed and lowercase in responses. Inputs elsewhere may accept mixed case or missing 0x; the API normalizes outputs.

Possible values: Value must match regular expression ^0x[a-f0-9]{64}$

Example: 0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3
blockNumberinteger<int64>required

Call block height.

Possible values: >= 0

Example: 20324123
blockTimestampinteger<int64>

Call block timestamp - milliseconds.

Possible values: >= 0

Example: 1755773684012
specVersionintegerrequired

Call runtime spec version.

Possible values: >= 0

Example: 1001
blockStatusBlockStatus (string)required

Block status. - finalized: Blocks that have been finalized on chain. - proposed: Blocks that have been authored but not yet finalized. - pruned: Blocks that have been removed or are no longer accessible.

Possible values: [proposed, finalized, pruned]

extrinsicIndexintegerrequired

Call extrinsic index.

Possible values: >= 0

Example: 0
extrinsicHashHash256Hex (string)required

32-byte Blake2b-256, always 0x-prefixed and lowercase in responses. Inputs elsewhere may accept mixed case or missing 0x; the API normalizes outputs.

Possible values: Value must match regular expression ^0x[a-f0-9]{64}$

Example: 0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3
parentCallHash object

If a nested call, the call's parent call record id.

oneOf
string

32-byte Blake2b-256, always 0x-prefixed and lowercase in responses. Inputs elsewhere may accept mixed case or missing 0x; the API normalizes outputs.

Possible values: Value must match regular expression ^0x[a-f0-9]{64}$

Example: 0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3
callPathstringrequired

A string representing the call path, using '::' as a delimiter and the index at each level.

Example: root::calls::0
callIndexinteger[]required

An integer array that represents the indices of the arguments that lead to the call's position in the extrinsic argument hierarcy.

Example: [0]
palletIndexintegerrequired

Call's pallet index in the metadata.

Possible values: >= 0

Example: 0
palletNamestringrequired

Call's pallet name in the metadata - capital case.

Example: Balances
palletCallIndexintegerrequired

Call's index in the pallet in the metadata.

Possible values: >= 0

Example: 0
palletCallNamestringrequired

Call's name in the pallet in the metadata - capital case.

Example: ForceTransfer
extrinsicIsSuccessfulbooleanrequired

Whether the call's extrinsic was successful.

args objectrequired

Call arguments.

property name*any

Call arguments.

Call
{
"hash": "0x28e4d435a46c1b6e59c82645620800cf06ea4b1e2979a2325f1f1fc2f232f82b",
"blockHash": "0x77d09455b5a5014cf8df62080f8a36aebd89f6dcec831c5acfb4444d07184b51",
"blockNumber": 29781585,
"blockTimestamp": 1755935208000,
"specVersion": 1006001,
"blockStatus": "finalized",
"callPath": "root::calls::0",
"callIndex": [
0,
2,
0
],
"extrinsicIndex": 0,
"extrinsicHash": "0x5cffd6624df1b3447bc5aa9db09a414f7b5058ff1b7bc3c53ae564248924fa0a",
"palletIndex": 2,
"palletName": "Timestamp",
"palletCallIndex": 0,
"palletCallName": "Set",
"extrinsicIsSuccessful": true,
"args": {
"now": "1755935208000"
}
}