Is there a way to get past tx info via blockfrost for a wallet?

Hello everyone, I want to set up a program that you can input a wallet address and it prints out past transaction details for that wallet. Is this possible? I can’t seem to find any blockfrost methods that specifically do this

You first get the associated addresses of a stake key with: https://docs.blockfrost.io/#tag/Cardano-Accounts/paths/~1accounts~1{stake_address}~1addresses/get
Then, for each of those addresses, you get all transactions with: https://docs.blockfrost.io/#tag/Cardano-Addresses/paths/~1addresses~1{address}~1transactions/get

3 Likes

Perfect, thank you very much Hepta! HB!
For anyone in the future browsing, this is also useful:
https://docs.blockfrost.io/#tag/Cardano-Transactions/paths/~1txs~1{hash}/get
for getting more details from each tx

2 Likes