跳转到主要内容
POST
Run `getSignaturesForAddress`
curl --request POST \
  --url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
  "method": "getSignaturesForAddress",
  "params": [
    "Vote111111111111111111111111111111111111111"
  ]
}
'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": [
    {
      "signature": "5XXN7L7cMGYTvckcaNeTXxhJgxeT1JTa9auwa2yXCFR1NXzwXrXNAWx4SaAw48S5186VzvXiXVEsWJu1WFR5AAmg",
      "slot": 114,
      "err": null,
      "memo": null,
      "blockTime": null,
      "confirmationStatus": "finalized"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt

Use this file to discover all available pages before exploring further.

授权

api_key
string
query
必填

请求体

application/json
jsonrpc
enum<string>
默认值:2.0
必填

The JSON-RPC protocol version.

可用选项:
2.0
示例:

"2.0"

id
string
默认值:1
必填

A unique identifier for the request.

示例:

"1"

method
enum<string>
默认值:getSignaturesForAddress
必填

The name of the RPC method to invoke.

可用选项:
getSignaturesForAddress
示例:

"getSignaturesForAddress"

params
(string | object)[]
必填

Array containing the required account address and optional configuration object.

Solana account address to retrieve transaction history for (wallet, token, program, NFT, etc.).

示例:

"Vote111111111111111111111111111111111111111"

响应

200 - application/json

Successfully retrieved signatures for the specified address.

jsonrpc
enum<string>

The JSON-RPC protocol version.

可用选项:
2.0
示例:

"2.0"

id
string

Identifier matching the request.

示例:

"1"

result
object[]

List of transaction signature information.