# Scry Wallet Lineage API

> Scry Wallet Lineage API 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 cached funding-lineage evidence for a Solana wallet address, including upstream funders, hop depth, source freshness, identity hints, loop detection, and coverage/confidence scores.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet-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-25302d29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XTMVbFdgSxzzhkMltxBY1

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-25302d29
```

Example prompt: Can you trace the funding lineage for Solana wallet F5jWYuiDLTiaLYa54D88YbpXgEsA6NKHzWy4SN4bMYjt — I need to know who funded it, how many hops back, and whether there are any loop-detection flags or identity hints?

## When to prefer this

Use this endpoint when you need to understand the provenance or source-of-funds chain for a specific Solana wallet — particularly for counterparty risk review, compliance triage, paid dossier enrichment, or detecting funded-from-exchange vs. funded-from-unknown patterns. Prefer it over general wallet scoring endpoints when the specific question is 'who funded this wallet and how many hops deep.'

## Known failure modes

- Invalid or malformed Solana address returns an error status
- Wallet with no on-chain funding history returns partial coverage with low confidence
- Payment not received or x402 flow incomplete results in 402 response
- Rate limiting or upstream Helius data unavailability may return partial results
- Very new wallets with sparse history may yield low confidence scores

## How this service works

Solana wallet lineage API via query parameter. Pass `address` to get cached funding-lineage, upstream funder evidence, hop depth, freshness, identity hints, loop detection, and coverage/confidence. No API keys, no subscriptions; x402 exact payment per request. Search aliases: wallet source of funds solana api; solana funding lineage api; who funded this solana wallet; solana wallet lineage api; wallet lineage solana api; solana wallet funding lineage api; solana wallet provenance api; wallet funder lookup solana. Primary object: single wallet source of funds.

## Output

Returns a JSON evidence pack including upstream funder addresses, hop depth, freshness timestamp, identity hints (e.g. exchange labels), loop detection status, coverage metrics, confidence score (0–1), and agent-decision-support fields to help the caller apply their own risk policy. Status can be success, partial, or error.

## 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": [
        "F5jWYuiDLTiaLYa54D88YbpXgEsA6NKHzWy4SN4bMYjt"
       ]
      }
     }
    }
   },
   "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
      },
      "lineage_available": {
       "type": "boolean"
      },
      "source_updated_at
… (truncated)
```

## More

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