Use when an agent wants to know what a wallet has been doing before paying it, accepting p
Use when an agent wants to know what a wallet has been doing before paying it, accepting payment from it or following it. Returns Recent transactions, token transfers, DEX swaps, NFT activity and internal transactions for an EVM wallet on Base or Ethereum, with a heuristic risk score. $0.03.
30000 (raw units)
price
6
calls / 30d
2
unique payers
2026-09-14
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "30000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab"
},
"type": "http"
},
"output": {
"example": {
"chain": "base",
"message": "Wallet surveillance via x402 protocol",
"queried_at": "2026-09-12T00:09:51.442Z",
"risk_score": {
"level": "medium",
"reasons": [
"no_transaction_history"
],
"score": 25
},
"surveillance": {
"dexs_swaps": {
"count": 0,
"items": []
},
"internal_transactions": {
"count": 0,
"items": []
},
"nft_activity": {
"count": 0,
"items": []
},
"recent_transactions": {
"count": 0,
"items": []
},
"token_transfers": {
"count": 50,
"items": [
{
"from": "0x7Cd443d93a981Ae154a78F4A9b4Fadb6E8A7A264",
"hash": "0x244024778b5aff09fba5961a9e4d711260d929100b8225c46633275cf40ac3f1",
"method": "0xe3ee160e",
"timestamp": "2026-09-12T00:09:03.000000Z",
"to": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"token": {
"address": null,
"decimals": "6",
"name": "USDC",
"symbol": "USDC",
"type": "ERC-20"
},
"total": "0",
"value": "4000"
}
],
"unique_tokens": 0
}
},
"wallet_address": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"address": {
"description": "EVM wallet address",
"type": "string"
},
"chain": {
"enum": [
"ethereum",
"base"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"chain": {
"type": "string"
},
"message": {
"type": "string"
},
"queried_at": {
"type": "string"
},
"risk_score": {
"properties": {
"level": {
"type": "string"
},
"reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"score": {
"type": "integer"
}
},
"type": "object"
},
"surveillance": {
"properties": {
"dexs_swaps": {
"properties": {
"count": {
"type": "integer"
},
"items": {
"type": "array"
}
},
"type": "object"
},
"internal_transactions": {
"properties": {
"count": {
"type": "integer"
},
"items": {
"type": "array"
}
},
"type": "object"
},
"nft_activity": {
"properties": {
"count": {
"type": "integer"
},
"items": {
"type": "array"
}
},
"type": "object"
},
"recent_transactions": {
"properties": {
"count": {
"type": "integer"
},
"items": {
"type": "array"
}
},
"type": "object"
},
"token_transfers": {
"properties": {
"count": {
"type": "integer"
},
"items": {
"items": {
"properties": {
"from": {
"type": "string"
},
"hash": {
"type": "string"
},
"method": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"to": {
"type": "string"
},
"token": {
"properties": {
"address": {
"type": "null"
},
"decimals": {
"type": "string"
},
"name": {
"type": "string"
},
"symbol": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"total": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"unique_tokens": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"wallet_address": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/wallet-spy" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.oblique.markets/api/v1/paid/wallet-spy");
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://api.oblique.markets/api/v1/paid/wallet-spy")
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/529.json, and this resource appears in /discovery/resources and /discovery/search.