Solana Account Transaction API avatar

Solana Account Transaction API

Try for free

Pay $0.50 for 1,000 results

Go to Store
Solana Account Transaction API

Solana Account Transaction API

websift/solana-account-transaction-api
Try for free

Pay $0.50 for 1,000 results

Fetch transaction data from any solana account

Get detailed transaction data including timestamps, SOL values, fees, signers, and more in an easy-to-use format for any Solana wallet address.

Features

  • Provides detailed transaction information including block time, fees, and status
  • Handles rate limiting and pagination automatically
  • Supports both finite and unlimited transaction fetching

Input

The actor accepts a JSON object with the following properties:

1{
2    "address": "address",
3    "maxItems": 100  // To get max transactions set as -1
4}

Output

The actor outputs transaction data in the following format for each transaction:

1[
2    {
3        "tx_hash": "Transaction hash string",
4        "block_date": "YYYY-MM-DD HH:MM:SS",
5        "block_time": 1234567890,
6        "sol_value_ui": 1.5,  // SOL amount
7        "sol_value_lamports": 1500000000,  // Raw lamports
8        "fee": 5000,
9        "status": "Success/Failure",
10        "signer": ["Address1", "Address2"],
11        "parsed_instruction": ["instruction details"],
12        "slot": 12345,
13        "extra_data": {}
14    }
15]

If an error occurs, the output will include an error message:

1{
2    "message": "Error description"
3}

Limitations

  • Only processes 1 account to ensure reliable performance
  • Some fields might have missing data fields marked as "N/A" if not available

Error Handling

The actor implements the following error handling mechanisms:

  • Invalid input format

Support

For issues, feature requests, or questions about this actor, please create an issue.

Developer
Maintained by Community

Actor Metrics

  • 1 monthly user

  • 1 bookmark

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified a month ago