GET
/
txmanager
/
history
Transaction History
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/txmanager/history \
  --header 'api-key: <api-key>'
{
  "transactions": [
    {
      "tx_hash": "<string>",
      "status": "pending",
      "confirmations": 123
    }
  ],
  "page": 123,
  "total_count": 123
}

Authorizations

api-key
string
header
required

API key for authenticating requests.

Query Parameters

count
integer
default:100

Number of transactions per page.

Required range: x >= 1
page
integer
default:1

Page number.

Required range: x >= 1

Response

200
application/json

Transaction history retrieved successfully.

The response is of type object.