GET
https://api.chainstack.com/v1/faucet
/
transactions-history
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
  }
]

The method retrieves the transaction history for all faucets.

In the Bearer field, you need to provide your Chainstack API key to authorize the call.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Transaction history retrieved successfully.

The response is of type object[].