Solana RPC · Transactions
POST getSignaturesForAddress
Signatures involving an address, newest first.
Endpoint
POST https://solrpc.infinityblocks.io/<API_KEY>
Standard Solana JSON-RPC 2.0 over HTTP POST. The API key is part of the URL path.
Parameters
| Param | Type | Required | Description |
|---|---|---|---|
address | string | yes | Base-58 account pubkey. |
config | object | no | limit (≤1000), before, until, commitment. |
Request
curl -s https://solrpc.infinityblocks.io/<API_KEY> \
-X POST -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"getSignaturesForAddress","params":["<ADDRESS>",{"limit":10}]}'
With @solana/web3.js
const sigs = await rpc.getSignaturesForAddress(new PublicKey("<ADDRESS>"), { limit: 10 });
Response
{ "jsonrpc": "2.0", "id": 1, "result": [ { "signature": "<SIGNATURE>", "slot": 423214000, "err": null, "memo": null, "blockTime": 1780165220, "confirmationStatus": "finalized" } ] }
Try it
Run getSignaturesForAddresslive · POST
Replace placeholders (e.g. <ADDRESS>) with real values. Your key is stored only in this browser.
—