Use when an agent needs wallet transfers
Use when an agent needs wallet transfers. Returns ERC-20 transfer history for one Base wallet, backed by the public Base transfer index: filter by token, direction and page, with normalized amounts, counterparties and timestamps; priced per bounded request $0.005/call via x402. $0.005.
5000 (raw units)
price
2
calls / 30d
1
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": "5000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"base": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"base": "0x1111111111111111111111111111111111111111",
"chain": "base",
"count": 1,
"source": "base.blockscout.com",
"transfers": [
{
"blockHash": "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
"blockNumber": 33712501,
"blockTimestamp": "2026-08-10T12:00:00Z",
"chain": "base",
"fromAddress": {
"address": "0x2222222222222222222222222222222222222222",
"chain": "base",
"contract": false,
"isUserAddress": false
},
"fromIsContract": false,
"historicalUSD": 1.25,
"id": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa_3",
"toAddress": {
"address": "0x1111111111111111111111111111111111111111",
"chain": "base",
"contract": false,
"isUserAddress": false
},
"toIsContract": false,
"tokenAddress": "0x833589fcd6edb6e08f4c7c32d4f71b54bdA02913",
"tokenDecimals": 6,
"tokenId": "usdc",
"tokenName": "USD Coin",
"tokenSymbol": "USDC",
"transactionHash": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"type": "token_transfer",
"unitValue": 1.25
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"base": {
"type": "string"
},
"chains": {
"enum": [
"base"
],
"type": "string"
},
"flow": {
"enum": [
"in",
"out",
"all"
],
"type": "string"
},
"limit": {
"type": "integer"
},
"offset": {
"type": "integer"
},
"tokens": {
"type": "string"
}
},
"required": [
"base"
],
"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": {
"base": {
"type": "string"
},
"chain": {
"type": "string"
},
"count": {
"type": "integer"
},
"source": {
"type": "string"
},
"transfers": {
"items": {
"properties": {
"blockHash": {
"type": "string"
},
"blockNumber": {
"type": "integer"
},
"blockTimestamp": {
"type": "string"
},
"chain": {
"type": "string"
},
"fromAddress": {
"properties": {
"address": {
"type": "string"
},
"chain": {
"type": "string"
},
"contract": {
"type": "boolean"
},
"isUserAddress": {
"type": "boolean"
}
},
"type": "object"
},
"fromIsContract": {
"type": "boolean"
},
"historicalUSD": {
"type": "number"
},
"id": {
"type": "string"
},
"toAddress": {
"properties": {
"address": {
"type": "string"
},
"chain": {
"type": "string"
},
"contract": {
"type": "boolean"
},
"isUserAddress": {
"type": "boolean"
}
},
"type": "object"
},
"toIsContract": {
"type": "boolean"
},
"tokenAddress": {
"type": "string"
},
"tokenDecimals": {
"type": "integer"
},
"tokenId": {
"type": "string"
},
"tokenName": {
"type": "string"
},
"tokenSymbol": {
"type": "string"
},
"transactionHash": {
"type": "string"
},
"type": {
"type": "string"
},
"unitValue": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/wallet-transfers" # -> 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-transfers");
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-transfers")
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/573.json, and this resource appears in /discovery/resources and /discovery/search.