Authorizations
Project API Key
Query Parameters
Number of transactions
Required range:
1 <= x <= 100
Response
OK
The response is of type object
.
curl --request GET \
--url https://arch-testnet.gomaestro-api.org/v0/rpc/transaction/recent/{count}/hex \
--header 'api-key: <api-key>'
{
"data": [
{
"accounts_tags": [
"<string>"
],
"bitcoin_mined_time": 123,
"bitcoin_txid": "<string>",
"hash": "<string>",
"runtime_transaction": {
"message": {
"instructions": [
{
"accounts": [
{
"is_signer": true,
"is_writable": true,
"pubkey": "<string>"
}
],
"data": "<string>",
"program_id": "<string>"
}
],
"signers": [
"<string>"
]
},
"signatures": [
"<string>"
],
"version": 123
},
"status": "<any>"
}
],
"last_updated": {
"block_hash": "<string>",
"block_height": 123
}
}
Get a specified number of recent Arch Network transactions in hexadecimal format with configurable count.
curl --request GET \
--url https://arch-testnet.gomaestro-api.org/v0/rpc/transaction/recent/{count}/hex \
--header 'api-key: <api-key>'
{
"data": [
{
"accounts_tags": [
"<string>"
],
"bitcoin_mined_time": 123,
"bitcoin_txid": "<string>",
"hash": "<string>",
"runtime_transaction": {
"message": {
"instructions": [
{
"accounts": [
{
"is_signer": true,
"is_writable": true,
"pubkey": "<string>"
}
],
"data": "<string>",
"program_id": "<string>"
}
],
"signers": [
"<string>"
]
},
"signatures": [
"<string>"
],
"version": 123
},
"status": "<any>"
}
],
"last_updated": {
"block_hash": "<string>",
"block_height": 123
}
}
Project API Key
Number of transactions
1 <= x <= 100
OK
The response is of type object
.
Was this page helpful?