For the complete documentation index, see llms.txt. This page is also available as Markdown.

getTransactionsForAddress

getTransactionsForAddress — Filtered transaction history for an address

post
/historical

Enhanced transaction history API with powerful filtering, sorting, and pagination capabilities for retrieving comprehensive transaction data for any address. Supports bidirectional sorting, time/slot/status filtering, and efficient keyset pagination via the paginationToken cursor.

Note: SVS supports the same parameter shape as the upstream provider with one exception — the filters.tokenAccounts field is not supported on Solana Vibe Station. All other filters (slot, blockTime, signature, status) work as documented. Parameters

  1. address (required) — Solana account address whose transaction history to retrieve. May be a wallet, token mint, program, NFT, etc.

  2. config (optional) — Optional configuration controlling sort order, pagination, transaction detail level, and filters.

Authorizations
AuthorizationstringOptional

Pass Authorization: <api-key> on each request.

Body
jsonrpcstring · enumRequired

JSON-RPC protocol version.

Example: 2.0Possible values:
idone ofRequired

Request identifier echoed back in the response.

Example: 1
stringOptional
or
integerOptional
methodstring · enumRequired

Must be getTransactionsForAddress.

Example: getTransactionsForAddressPossible values:
Responses
200

Successful getTransactionsForAddress response.

application/json

Base envelope of every JSON-RPC 2.0 response.

jsonrpcstring · enumRequiredExample: 2.0Possible values:
idone ofRequired

Echoed request id.

Example: 1
stringOptional
or
integerOptional
post/historical
curl -X POST https://public.rpc.solanavibestation.com/historical \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "getTransactionsForAddress",
    "params": [
      "Vote111111111111111111111111111111111111111",
      {
        "transactionDetails": "signatures",
        "limit": 10
      }
    ]
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "data": [
      {
        "signature": "5h6xBEauJ3PK6SWCZ1PGjBvj8vDdWG3KpwATGy1ARAXFSDwt8GFXM7W5Ncn16wmqokgpiKRLuS83KUxyZyv2sUYv",
        "slot": 1054,
        "transactionIndex": 42,
        "err": null,
        "memo": null,
        "blockTime": 1641038400,
        "confirmationStatus": "finalized"
      }
    ],
    "paginationToken": "1055:5"
  }
}

Last updated