Get a detailed merchant deep-dive by wallet address
Get a detailed merchant deep-dive by wallet address. Returns volume stats, buyer diversity, trend signals, and recommendations.
30000 (raw units)
price
4
calls / 30d
2
unique payers
2026-09-17
updated
Provider
decipherranker.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x289aa17875d1adbe3dc66d7658218d14258d81f2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "0xe9030014f5dae217d0a152f02a043567b16c1abf",
"chain": "base"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"address": "0xe9030014f5dae217d0a152f02a043567b16c1abf",
"all_time_stats_available": false,
"buyers": {
"concentration": 0.3,
"diversity_score": 65,
"unique_30d": 10
},
"category": "ai",
"chain": "base",
"found": true,
"pricing": {
"price_usd": 0.01,
"vs_category": "median"
},
"rank": 5,
"recommendations": [
"Publish input schemas",
"Increase buyer diversity"
],
"service_name": "Example Service",
"trends": [
{
"date": "2026-07-01",
"rank": 5,
"score": 0.55
}
],
"volume": {
"total_transactions": null,
"tx_count_30d": 50,
"volume_30d": 200
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"address": {
"description": "The payee address (EVM or Solana) of the merchant",
"maxLength": 48,
"minLength": 32,
"type": "string"
},
"chain": {
"default": "base",
"description": "Blockchain network (mainnet only)",
"enum": [
"base",
"solana",
"polygon"
],
"type": "string"
}
},
"required": [
"address",
"chain"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
},
"all_time_stats_available": {
"type": "boolean"
},
"buyers": {
"additionalProperties": {},
"propertyNames": {
"type": "string"
},
"type": "object"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"chain": {
"type": "string"
},
"found": {
"type": "boolean"
},
"message": {
"type": "string"
},
"pricing": {
"additionalProperties": {},
"propertyNames": {
"type": "string"
},
"type": "object"
},
"rank": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"recommendations": {
"items": {
"type": "string"
},
"type": "array"
},
"service_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"trends": {
"items": {
"additionalProperties": {},
"propertyNames": {
"type": "string"
},
"type": "object"
},
"type": "array"
},
"volume": {
"additionalProperties": {},
"propertyNames": {
"type": "string"
},
"type": "object"
}
},
"required": [
"found"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://decipherranker.com/api/report/merchant" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://decipherranker.com/api/report/merchant");
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://decipherranker.com/api/report/merchant")
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/11950.json, and this resource appears in /discovery/resources and /discovery/search.