# SuVerse Solana Transaction Decoder

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

Decodes a Solana transaction signature into a structured, human-readable summary including invoked programs, token balance changes, fees, and instruction flow

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/solana-tx-decoder
- Price: $0.2/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-88435286
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hG-4TGu6ebqPv3nB8il4U

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-88435286 -d '<json body>'
```

Example prompt: Can you decode this Solana transaction and tell me what happened — which programs were called, what tokens changed hands, and how much the fee was in USD? Signature: 5KtPn1LGuxDs8u9PzJBp2aBFWUaVuqG8dRWzH1e7bFLH3L2MR4kP6Xb2qEVZuN9JvNmZkQ.

## When to prefer this

Choose this endpoint when you need a human-readable, structured breakdown of any Solana transaction — especially for DeFi swaps on Jupiter, Raydium, or Orca — including token balance changes and fee details. Prefer it over raw RPC calls when you need normalized, agent-friendly output without writing your own parser. Ideal for wallet activity analysis, transaction debugging, or building dashboards.

## Known failure modes

- Invalid or malformed transaction signature returns error
- Transaction signature not found on-chain returns 404 or not-found error
- Network timeout if Solana RPC is congested
- Unsupported or unrecognized program type may yield partial decode
- Payment failure if USDC balance is insufficient across supported chains

## How this service works

Decode any Solana transaction by signature into human-readable summary. Invoked programs (Jupiter, Raydium, Orca, SPL Token), token balance changes, fees in SOL and USD, instruction flow, one-line summary. AI agent wallet analysis, swap debugger, Solana tx decoder API.

## Output

Returns a structured JSON object containing a one-line human-readable summary, list of invoked programs (e.g. Jupiter, Raydium, SPL Token), token balance changes per wallet, transaction fee in both SOL and USD, and a detailed instruction flow breakdown

## 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-88435286/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)
