Skip to main content
POST
/
wallet
/
{address}
/
signatures
Fetch Wallet Signatures
curl --request POST \
  --url https://api.soltop.sh/wallet/{address}/signatures \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "limit": 100,
  "before": "3AQ8vVrkH5FAG1GV8Ak1rEUc7eKgNuRGEmpUT5TfixZ9...",
  "start_time": 1729368000,
  "end_time": 1729371600,
  "hint_signature": "<string>"
}
'
{
  "success": true,
  "data": {
    "signatures": [
      {
        "signature": "<string>",
        "slot": 123,
        "blockTime": 123,
        "success": true
      }
    ],
    "pagination": {
      "has_more": true,
      "next_before": "<string>",
      "returned": 123,
      "total_in_window": 123,
      "from_cache": true
    },
    "metadata": {
      "time_window_hours": 168,
      "time_window_start": 123,
      "time_window_end": 123,
      "wallet_address": "<string>",
      "processing_time_ms": 123,
      "cache_key": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: sk_live_xxx (production) or sk_test_xxx (testing). Obtain your API key from the Blockline Dashboard.

Path Parameters

address
string
required

Wallet address (base58)

Body

application/json
limit
integer
default:100

Signatures to return per page

Required range: 1 <= x <= 1000
Example:

100

before
string

Signature to paginate from (for subsequent pages)

Example:

"3AQ8vVrkH5FAG1GV8Ak1rEUc7eKgNuRGEmpUT5TfixZ9..."

start_time
integer

Unix timestamp - start of time window (must be within 7 days)

Example:

1729368000

end_time
integer

Unix timestamp - end of time window (must be within 7 days)

Example:

1729371600

hint_signature
string

Signature to start RPC fetching from (optimization hint)

Response

Wallet signatures

success
boolean
data
object