curl --request GET \
--url https://api.chainstack.com/v1/faucet/transactions-history \
--header 'Authorization: Bearer <token>'
[
{
"protocol": "<string>",
"network": "<string>",
"amount": {
"$numberDecimal": "<string>"
},
"address": "<string>",
"userId": "<string>",
"organizationId": "<string>",
"transactionHash": "<string>",
"timestamp": 123
}
]
Retrieves the transaction history for a specified organization ID.
curl --request GET \
--url https://api.chainstack.com/v1/faucet/transactions-history \
--header 'Authorization: Bearer <token>'
[
{
"protocol": "<string>",
"network": "<string>",
"amount": {
"$numberDecimal": "<string>"
},
"address": "<string>",
"userId": "<string>",
"organizationId": "<string>",
"transactionHash": "<string>",
"timestamp": 123
}
]
Bearer
field, you need to provide your Chainstack API key to authorize the call.Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Transaction history retrieved successfully.
The response is of type object[]
.
Was this page helpful?