# Scry Transfer Tape – Solana Wallet Transfer History

> Scry Transfer Tape – Solana Wallet Transfer History is a paid API for AI agents from scry.solanahub.de, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Fetches Helius-normalized transfer history for a Solana wallet address, including Scry identity tags and edge-gap reconciliation for forensic analysis.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet-transfer-tape
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scry-solanahub-de-fbc013db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8LeG3lDN3SiomRGTnnUrz

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 scry-solanahub-de-fbc013db
```

Example prompt: Pull the latest Helius-normalized transfer tape for Solana wallet HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK — I need the identity tags and any edge-gap reconciliation before I dig deeper into the forensics.

## When to prefer this

Use this endpoint when you need a compact, normalized view of a Solana wallet's recent transfer history enriched with Scry identity tags and edge-gap reconciliation, especially as a pre-forensics step before deeper investigation. Prefer this over raw RPC calls when you want identity context layered on top of transfers without managing API keys or subscriptions.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error status
- Wallet not yet indexed by Scry returns partial results with limited identity tags
- Payment failure (x402) prevents response delivery
- Network or upstream Helius outage may return partial or error status
- Unrecognized wallet with no transfer history may return empty evidence pack

## How this service works

Query-parameter alias for Scry Transfer Tape. Fresh Solana wallet transfers via query parameter with latest Helius-normalized transfers. Pass `address` to receive one wallet's latest transfer rows, identity tags when indexed, counterparties, mints touched, freshness timestamps, and local edge-gap reconciliation before deeper forensics. Use for one-wallet transfer evidence, not a daily hot-wallet cohort and not a ranked wallet shortlist. No API keys, no subscriptions; x402 exact payment per request. Buyer intent terms: fresh solana wallet transfers; wallet activity feed solana; solana wallet transfer tape; fresh solana wallet transfers x402; what happened to this wallet today; solana wallet transfer tape x402; solana wallet transfers api; solana wallet transfer history x402. Buyer object: single wallet fresh activity.

## Output

Returns a structured evidence pack containing the wallet's latest Helius-normalized transfers, Scry identity tags (when indexed), edge-gap reconciliation data, a confidence score, and agent_decision_support fields to inform downstream policy decisions. Includes status (success/partial/error), coverage metadata, methodology notes, and source attribution.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "examples": [
        "HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK"
       ]
      },
      "since_slot": {
       "type": "integer",
       "minimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "product",
      "coverage",
      "evidence_pack",
      "agent_decision_support",
      "methodology"
     ],
     "properties": {
      "as_of": {
       "type": "string"
      },
      "in_db": {
       "type": "boolean"
      },
      "caveat": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "wallet": {
       "type": "object",
       "additionalProperties": true
      },
      "address": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "sources": {
       "type": "array"
      },
      "coverage": {
       "type": "object",
       "additionalProperties": true
      },
      "supported": {
       "type": "boolean"
      },
      "methodology": {
       "type": "string"
      },
      "evidence_pack": {
       "type": "object",
       "additionalProperties": true
      },
      "transfer_tape": {
       "type": "object",
       "additionalProperties": true
      },
      "reconciliation": {
       "type": "object",
       "additionalProperties": true
      },
      "spend_rationale": {
       "type": "object",
       "additionalProperties": true
      },
      "confidence_score": {
       "type": "number"
      },
      "field_provenance": {
       "type": "object",
       "additionalProperties": true
      },
      "source_updated_at": {
       "type": "string"
      },
      "helius_live_refresh": {
       "type": "object",
       "additionalProperties": true
      },
      "agent_decision_support": {
       "type": "o
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scry-solanahub-de-fbc013db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scry.solanahub.de](https://www.zero.xyz/host/scry.solanahub.de/llms.txt)
