v1
latestOpenAPI 3.0.02026-07-17224996.6 KBAccounts
Get Account Keys By Address
Get an account data by provided address in latest "sealed" block or by provided block height.
get/accounts/{address}/keys
Path parameters
addressstring hexadecimal required
The 8-byte address of an account.
The address of the account.
Query parameters
The block height to query for the account details. "sealed" is used by default.
expandstring[]
A comma-separated list indicating which properties of the content to expand.
selectstring[]
A comma-separated list indicating which properties of the content to return.
agreeing_executors_countstring uint64
A minimum number of execution receipts for the execution result.
required_executor_idsIdentifier[]
A set of execution node IDs, one of which must have produced the execution result.
include_executor_metadataboolean
Specifies whether or not to include the executor metadata in the response.
Response
OK
Example response
{
"metadata": {
"executor_metadata": {
"execution_result_id": null,
"executor_ids": [
null,
null
]
}
},
"keys": [
{
"public_key": "public_key",
"sequence_number": "sequence_number",
"metadata": {
"executor_metadata": {
"execution_result_id": null,
"executor_ids": [
null,
null
]
}
},
"index": "index",
"weight": "weight",
"signing_algorithm": "BLSBLS12381",
"revoked": true,
"hashing_algorithm": "SHA2_256"
},
{
"public_key": "public_key",
"sequence_number": "sequence_number",
"metadata": {
"executor_metadata": {
"execution_result_id": null,
"executor_ids": [
null,
null
]
}
},
"index": "index",
"weight": "weight",
"signing_algorithm": "BLSBLS12381",
"revoked": true,
"hashing_algorithm": "SHA2_256"
}
]
}