Use when an agent needs base wallet profile
Use when an agent needs base wallet profile. Returns Accountless Base mainnet wallet profile with native and ERC-20 balances, bounded transfer activity, counterparties, contracts, freshness metadata and evidence hash. $0.01.
10000 (raw units)
price
8
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": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"activity": {
"complete_for": "all_discovered_erc20_transfers",
"first_block": 33700001,
"last_block": 33712501,
"outgoing_transaction_count": 42,
"transfer_log_count": 18
},
"address": "0x4200000000000000000000000000000000000006",
"chain": "base",
"chain_id": 8453,
"contracts": [
"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
],
"counterparties": [
{
"counterparty": "0x1111111111111111111111111111111111111111",
"transfers": 4
}
],
"evidence_hash": "sha256:3b7b2b5f3a0f8ef0d6b3c77e4a2d6cfb0c7f8b5d6f6e2b9a3d4c5e6f708192a3b",
"freshness": {
"latest_block": 33712501,
"lookback_blocks": 10000,
"observed_at": "2026-08-21T12:00:00.000Z",
"rpc_source": "public_base_rpc"
},
"native": {
"balance_eth": "0.125",
"balance_wei": "125000000000000000"
},
"tokens": [
{
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"balance": "1523.400000",
"balance_raw": "1523400000",
"decimals": 6
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"address": {
"type": "string"
},
"asset": {
"description": "Optional native/base/eth or ERC-20 contract address",
"type": "string"
},
"chain": {
"enum": [
"base",
"base-mainnet",
"eip155:8453"
],
"type": "string"
},
"include_counterparties": {
"type": "boolean"
},
"lookback_blocks": {
"type": "integer"
}
},
"required": [
"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": {
"properties": {
"complete_for": {
"type": "string"
},
"first_block": {
"type": "integer"
},
"last_block": {
"type": "integer"
},
"outgoing_transaction_count": {
"type": "integer"
},
"transfer_log_count": {
"type": "integer"
}
},
"type": "object"
},
"address": {
"type": "string"
},
"chain": {
"type": "string"
},
"chain_id": {
"type": "integer"
},
"contracts": {
"items": {
"type": "string"
},
"type": "array"
},
"counterparties": {
"items": {
"properties": {
"counterparty": {
"type": "string"
},
"transfers": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"evidence_hash": {
"type": "string"
},
"freshness": {
"properties": {
"latest_block": {
"type": "integer"
},
"lookback_blocks": {
"type": "integer"
},
"observed_at": {
"type": "string"
},
"rpc_source": {
"type": "string"
}
},
"type": "object"
},
"native": {
"properties": {
"balance_eth": {
"type": "string"
},
"balance_wei": {
"type": "string"
}
},
"type": "object"
},
"tokens": {
"items": {
"properties": {
"address": {
"type": "string"
},
"balance": {
"type": "string"
},
"balance_raw": {
"type": "string"
},
"decimals": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/base-wallet-profile" # -> 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/base-wallet-profile");
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/base-wallet-profile")
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/549.json, and this resource appears in /discovery/resources and /discovery/search.