Targeted node lookup by asset address or protocol/asset name — the sole discovery path
Targeted node lookup by asset address or protocol/asset name — the sole discovery path
1000 (raw units)
price
7
calls / 30d
5
unique payers
2026-09-14
updated
Provider
risk-graph-gx7v4.ondigitalocean.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x58f42C60DFe9b662B9E573C13358e5D773790699",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"label": "Pool",
"limit": 10,
"q": "morpho"
},
"type": "http"
},
"output": {
"example": {
"nodes": [
{
"id": "pool:base:0x3a85…",
"labels": [
"Pool"
],
"properties": {
"name": "Morpho BONDUSD/USR",
"network": "base",
"tvlUsd": 12500000,
"uniqueKey": "0x3a85…"
}
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"grade": {
"description": "Optional grade comparator over A–F, e.g. \"A\", \"<=B\", \">=C\".",
"type": "string"
},
"label": {
"description": "Optional PascalCase label filter (e.g. \"Pool\", \"Asset\", \"Protocol\", \"Chain\").",
"type": "string"
},
"limit": {
"description": "Max nodes to return; hard-capped at 10 (default 10).",
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"q": {
"description": "Asset address or protocol/asset name. Targeted lookup only — empty and wildcard (`*`, `%`) queries are rejected.",
"type": "string"
},
"tvl": {
"description": "Optional TVL comparator filter, e.g. \">1000000\" or \"<5e8\".",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"nodes": {
"items": {
"properties": {
"id": {
"description": "Stable node id — pass to `/node` and `/dependencies`.",
"type": "string"
},
"labels": {
"description": "PascalCase Neo4j labels (e.g. \"Pool\", \"Asset\").",
"items": {
"type": "string"
},
"type": "array"
},
"properties": {
"additionalProperties": false,
"description": "Teaser fields only. Full properties + `_riskTier` (A–F) are on `/node`.",
"properties": {
"address": {
"description": "On-chain contract address, when the node has one.",
"type": "string"
},
"marketCapUsd": {
"description": "Token market cap ($), for asset / promoted-LST nodes. Distinct from tvlUsd — market cap is not value-locked.",
"type": "number"
},
"name": {
"type": "string"
},
"network": {
"description": "Chain the node lives on.",
"type": "string"
},
"tvlUsd": {
"description": "Value-locked $ TVL, coalesced across real pool types. Absent for LST/token nodes (see marketCapUsd) and pools with no USD figure.",
"type": "number"
},
"uniqueKey": {
"description": "Morpho market hash (also embedded in `id`), when applicable.",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"id",
"labels",
"properties"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"nodes"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://risk-graph-gx7v4.ondigitalocean.app/api/v1/agent/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://risk-graph-gx7v4.ondigitalocean.app/api/v1/agent/search");
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://risk-graph-gx7v4.ondigitalocean.app/api/v1/agent/search")
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/12908.json, and this resource appears in /discovery/resources and /discovery/search.