Skip to main content

0.05 credits per call

getSignaturesForAddress on Solana: Returns confirmed transaction signatures involving an address.

Endpoint

https://rpc.goldrushdata.com/v1/solana-mainnet
Authenticate with Authorization: Bearer <GOLDRUSH_API_KEY>. See authentication.

Parameters

NameTypeRequiredDescriptionExample
addressstringyesBase-58 encoded account address."9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM"
configobjectno{limit?, before?, until?, commitment?, minContextSlot?}. limit defaults to 1000 (max 1000).{"limit":10}

Returns

array<object>: Array of {signature, slot, err, memo, blockTime, confirmationStatus} newest first.
[{"signature":"5VERv8...","slot":372877175,"err":null,"blockTime":1718000000,"confirmationStatus":"finalized"}]

Examples

curl https://rpc.goldrushdata.com/v1/solana-mainnet \
  -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "getSignaturesForAddress",
    "params": ["9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM", {"limit":10}]
  }'

Errors

Standard JSON-RPC errors: -32600 invalid request, -32601 method not found, -32602 invalid params.