APIs & SDKs
Log In
APIs & SDKs

enhancedGetTransactionsByAddress

📊 Understanding enhancedGetTransactionsByAddress

  • enhancedGetTransactionsByAddress retrieves detailed parsed transaction history relating to a specific public address on Solana. It takes:
    • address - a base58-encoded string.
    • Object, optional:
      • limit - integer (between 1 and 1000, default 1000).
      • before - string, transaction hash.
      • after - string, transaction hash.
      • until - string, transaction hash.

Query example

const axios = require('axios'); (async () => { const response = await axios.post('https://rpc.particle.network/solana', { chainId: 103, jsonrpc: '2.0', id: 0, method: 'enhancedGetTransactionsByAddress', params: ['6XU36wCxWobLx5Rtsb58kmgAJKVYmMVqy4SHXxENAyAe'], }, { auth: { username: 'Your Project Id', password: 'Your Project Server Key', } }); console.log(response.data); })();
Body Params
string
required
Defaults to 2
integer
required
Defaults to 1
integer
required
string
required
params
array
required
params*
Response

Language
Credentials
:
Click Try It! to start a request and see the response here!