# 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.05/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-solana-tx-decoder
- 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-af231590
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_698EoTEAqzM3gpsdpgWd_

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

Example prompt: Can you decode this Solana transaction and tell me what happened — which programs were invoked, what token balances changed, and how much the fee was in USD? The signature is 5KtPn1LGuxhFPy2BxnFwFHuL3k7VSTrDmj4mTzT7H7mQWFKWyZV4RiqGKTjmpNw3dB6Kc8G3qVntFy3v9ZsDMdL

## When to prefer this

Use this endpoint when you need to interpret a raw Solana transaction signature into human-readable information — especially for DeFi swaps (Jupiter, Raydium, Orca), SPL token transfers, or any wallet activity analysis. Prefer this over generic block explorers when you need structured, machine-parseable output with USD fee conversion rather than raw on-chain data.

## Known failure modes

- Invalid or malformed transaction signature returns an error
- Transaction not found on Solana mainnet (e.g. devnet/testnet tx) returns not found error
- Network timeout if Solana RPC is congested
- Payment failure if USDC balance is insufficient across supported networks
- Very old or pruned transactions may not be retrievable

## How this service works

Decode any Solana transaction by signature into structured human-readable summary. Invoked programs, token balance changes, fees in SOL and USD, instruction flow, one-line summary. Powered by SuVerse infrastructure on Solana mainnet. AI agent tx decoder API.

## Output

A structured breakdown of the Solana transaction including: list of invoked programs (e.g. Jupiter, Raydium, Orca, SPL Token), pre/post token balance changes per wallet, transaction fee in both SOL and USD, ordered instruction flow, and a concise one-line human-readable summary of what the transaction did

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