Solana Account Transaction API avatar
Solana Account Transaction API

Pricing

$1.50 / 1,000 results

Go to Store
Solana Account Transaction API

Solana Account Transaction API

Developed by

Jacob

Jacob

Maintained by Community

Fetch transaction data from any solana account

0.0 (0)

Pricing

$1.50 / 1,000 results

2

Total users

8

Monthly users

8

Runs succeeded

>99%

Last modified

a month ago

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:

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

Output

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

[
{
"tx_hash": "Transaction hash string",
"block_date": "YYYY-MM-DD HH:MM:SS",
"block_time": 1234567890,
"sol_value_ui": 1.5, // SOL amount
"sol_value_lamports": 1500000000, // Raw lamports
"fee": 5000,
"status": "Success/Failure",
"signer": ["Address1", "Address2"],
"parsed_instruction": ["instruction details"],
"slot": 12345,
"extra_data": {}
}
]

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

{
"message": "Error description"
}

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.