# Scry Solana Wallet Funding Lineage

> Scry Solana Wallet Funding Lineage is a paid API for AI agents from scry.solanahub.de, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns cache-first funding lineage evidence for a Solana wallet, including upstream funders, hop depth, loop detection, identity hints, and confidence scores.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet/:address/lineage
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scry-solanahub-de-803f962d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p737DCzFisFF5jDyYCrCw

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-803f962d
```

Example prompt: Can you trace the funding lineage for Solana wallet F5jWYuiDLTiaLYa54D88YbpXgEsA6NKHzWy4SN4bMYjt — I want to see the upstream funders, how many hops back it goes, any identity hints, and whether there are any funding loops detected?

## When to prefer this

Use this endpoint when you need fast, cache-first funding lineage evidence for a Solana wallet without triggering a live Helius refresh. Ideal for source-of-funds compliance review, counterparty risk triage, wallet provenance checks, or building Globe wallet dossiers where low latency and cost-efficiency matter more than guaranteed real-time data.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error status
- Wallet with no on-chain funding history returns partial status with low coverage
- Cache miss with stale data may result in reduced confidence score
- Payment not received or insufficient payment returns 402 response
- Wallet address not yet indexed returns partial or empty evidence pack

## Output

Returns a structured evidence pack including: status (success/partial/error), list of known upstream funders, hop depth, source freshness timestamp, identity hints for known entities, loop detection flags, coverage metrics, and a 0-1 confidence score. Also includes an agent_decision_support object for policy-based downstream decisions.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "examples": [
        "F5jWYuiDLTiaLYa54D88YbpXgEsA6NKHzWy4SN4bMYjt"
       ]
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "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"
      },
      "lineage": {
       "type": "array"
      },
      "product": {
       "type": "string"
      },
      "sources": {
       "type": "array"
      },
      "coverage": {
       "type": "object",
       "additionalProperties": true
      },
      "frozen_at": {
       "type": "string"
      },
      "supported": {
       "type": "boolean"
      },
      "is_example": {
       "type": "boolean"
      },
      "methodology": {
       "type": "string"
      },
      "fixture_note": {
       "type": "string"
      },
      "depth_reached": {
       "type": "number"
      },
      "evidence_pack": {
       "type": "object",
       "additionalProperties": true
      },
      "loop_detected": {
       "type": "boolean"
      },
      "spend_rationale": {
       "type": "object",
       "additionalProperties": true
      },
      "terminal_funder": {
       "type": "string"
      },
      "confidence_score": {
       "type": "number"
      },
      "field_provenance": {
       "type": "object",
       "additionalProperties": true
   
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scry-solanahub-de-803f962d/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)
