Use when an agent needs wallet analyze
Use when an agent needs wallet analyze. Returns Base wallet balances, bounded transfers, token holdings and counterparties from a public Base block explorer index. $0.005.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.005listed price per call
n/aprice it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.oblique.markets/api/v1/paid/wallet-analyze
| Category | Market data |
|---|---|
| Provider host | api.oblique.markets |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"wallet_address": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"wallet_address": {
"type": "string"
}
},
"required": [
"wallet_address"
],
"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": {
"activity_window_days": {
"type": "integer"
},
"analyzed_at": {
"type": "string"
},
"balances": {
"type": "array"
},
"chain": {
"type": "string"
},
"counterparties": {
"type": "array"
},
"message": {
"type": "string"
},
"source": {
"type": "string"
},
"transfer_count": {
"type": "integer"
},
"transfers": {
"type": "array"
},
"wallet_address": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}