GET
/
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.
protocol
string

The protocol used for the transaction.

network
string

The network used for the transaction.

amount
object

The amount sent in the transaction.

address
string

The address to which the amount was sent.

userId
string

User ID associated with the transaction.

organizationId
string

Organization ID associated with the transaction.

transactionHash
string | null

Transaction hash, nullable if not available.

timestamp
integer

Timestamp of the transaction in milliseconds.