https://scry.solanahub.de/x402/wallet/:address/bundler-check
No description provided.
10000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-15
updated
Provider
scry.solanahub.de · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "CTKigV78yuErumvqm7Qor8j1hMK2oxNxdhwpVrAKV85d",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xF4A904d8326786d90157cf791C281302F11b2036",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"canonical_path": "/x402/wallet/:address/bundler-check",
"description": "Is this Solana wallet a bundler? Single-wallet bundler and private-routing evidence check. Detects whether one wallet routes through Jito, Nozomi, BloXroute, Z…",
"entry_role": "low_cost_single_wallet_precheck",
"icon_url": "https://scry.solanahub.de/x402/assets/scry-wallet-intelligence-256.png",
"input": {
"method": "GET",
"pathParams": {
"address": "HYWo71Wk9PNDe5sBaRKazPnVyGnQDiwgXCFKvgAQ1ENp"
},
"queryParams": {},
"type": "http"
},
"logo_url": "https://scry.solanahub.de/x402/assets/scry-wallet-intelligence-512.png",
"marketplace_alias": false,
"marketplace_listing": true,
"output": {
"example": {
"address": "HYWo71Wk9PNDe5sBaRKazPnVyGnQDiwgXCFKvgAQ1ENp",
"agent_decision_support": {
"confidence": "HIGH",
"posture": "evidence_only"
},
"as_of": "2026-09-13T10:06:45.640Z",
"caveat": "Risk intelligence only. Not financial advice or a trading recommendation.",
"confidence": "HIGH",
"confidence_score": 0.9,
"coverage": {},
"evidence_pack": {
"contract": "scry_evidence_pack_v1",
"posture": "evidence_for_caller_policy"
},
"field_provenance": {},
"in_db": true,
"methodology": "sentinel_x402_bundler_check_v1",
"pattern": "MULTI_TIP",
"primary_service": "multi",
"product": "scry_wallet_bundler_check",
"risk": "MID",
"sample_size": {},
"services_observed": {},
"sources": [
"scry-wallet-db",
"scry-bundler-registry",
"helius-identity"
],
"spend_rationale": {},
"status": "success",
"supported": true,
"tip_total_sol": 0.142
},
"full_example_url": "https://scry.solanahub.de/x402/discovery.json?full=1",
"type": "json"
},
"provider": "Scry",
"service_name": "Scry Wallet Intelligence"
},
"routeTemplate": "/x402/wallet/:address/bundler-check",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"address": {
"examples": [
"HYWo71Wk9PNDe5sBaRKazPnVyGnQDiwgXCFKvgAQ1ENp"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"queryParams": {
"properties": {},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"address": {
"type": "string"
},
"agent_decision_support": {
"additionalProperties": true,
"type": "object"
},
"as_of": {
"type": "string"
},
"caveat": {
"type": "string"
},
"confidence": {
"type": "string"
},
"confidence_score": {
"type": "number"
},
"coverage": {
"additionalProperties": true,
"type": "object"
},
"evidence_pack": {
"additionalProperties": true,
"type": "object"
},
"field_provenance": {
"additionalProperties": true,
"type": "object"
},
"in_db": {
"type": "boolean"
},
"methodology": {
"type": "string"
},
"pattern": {
"type": "string"
},
"primary_service": {
"type": "string"
},
"product": {
"type": "string"
},
"risk": {
"type": "string"
},
"sample_size": {
"additionalProperties": true,
"type": "object"
},
"services_observed": {
"additionalProperties": true,
"type": "object"
},
"sources": {
"type": "array"
},
"spend_rationale": {
"additionalProperties": true,
"type": "object"
},
"status": {
"type": "string"
},
"supported": {
"type": "boolean"
},
"tip_total_sol": {
"type": "number"
}
},
"required": [
"status",
"product",
"coverage",
"evidence_pack",
"agent_decision_support",
"methodology"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://scry.solanahub.de/x402/wallet/:address/bundler-check" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://scry.solanahub.de/x402/wallet/:address/bundler-check");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://scry.solanahub.de/x402/wallet/:address/bundler-check")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12371.json, and this resource appears in /discovery/resources and /discovery/search.