# SuVerse Solana Wallet Transaction History

> SuVerse Solana Wallet Transaction History is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns parsed, human-readable transaction history for any Solana wallet address, including transaction types, token transfers, SOL amounts, fees, and timestamps with cursor-based pagination.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-wallet-history
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-b26e7fac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bhqqYGcUGI6BwX9WYZ9J-

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability proxy-suverse-io-b26e7fac -d '<json body>'
```

Example prompt: Pull the last 50 transactions for Solana wallet 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU and show me what happened — swaps, transfers, NFT sales — with human-readable descriptions and fees.

## When to prefer this

Use this endpoint when you need structured, human-readable Solana transaction history rather than raw RPC output. It is ideal for portfolio managers, tax tools, trading bots, and wallet analytics dashboards that need labeled transaction types (SWAP, TRANSFER, NFT_SALE) and token-level detail without parsing raw Solana logs. Prefer over direct RPC getSignaturesForAddress when interpretability and ease of downstream processing matter.

## Known failure modes

- Invalid or malformed Solana wallet address returns a 400 error
- Wallet with no transaction history returns an empty list
- Pagination cursor mismatch or expired cursor may return unexpected result ranges
- Rate limiting or payment failure returns a 402 or 429 error
- Very new transactions may not yet be indexed, resulting in incomplete recent history

## How this service works

Parsed Solana wallet transaction history by address. Recent tx with human-readable descriptions, types (SWAP, TRANSFER, NFT_SALE), token transfers, native SOL transfers, fees, timestamps. Pagination via before/until. AI agent portfolio manager, tax tool, Solana wallet API.

## Output

A list of recent Solana transactions for the given wallet, each with a human-readable description, categorized type (SWAP, TRANSFER, NFT_SALE, etc.), token balance changes, native SOL transfer amounts, fees in SOL, and Unix timestamps. Includes before/until cursor values for paginating through older or newer results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-b26e7fac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
