Use when an agent needs base transfer search
Use when an agent needs base transfer search. Returns Search bounded Base mainnet ERC-20 transfers by address, direction, asset, counterparty, and time window; return structured transfer records. $0.02.
20000 (raw units)
price
9
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": "20000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "example",
"direction": "in"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"address": "0x1111111111111111111111111111111111111111",
"count": 1,
"direction": "in",
"evidence_hash": "sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"filters": {
"asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"counterparty": null,
"from_timestamp": "2026-08-10T00:00:00.000Z",
"to_timestamp": "2026-08-11T00:00:00.000Z"
},
"freshness": {
"age_seconds": 86401,
"data_as_of": "2026-08-10T12:00:00.000Z",
"queried_at": "2026-08-11T12:00:01.000Z"
},
"limit": 25,
"transfers": [
{
"amount": "1.250000",
"amount_atomic": "1250000",
"asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"block_number": 33712501,
"counterparty": "0x2222222222222222222222222222222222222222",
"direction": "in",
"from": "0x2222222222222222222222222222222222222222",
"status": "success",
"timestamp": "2026-08-10T12:00:00.000Z",
"to": "0x1111111111111111111111111111111111111111",
"transaction_hash": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"address": {
"type": "string"
},
"asset": {
"type": "string"
},
"counterparty": {
"type": "string"
},
"direction": {
"enum": [
"in",
"out",
"both"
],
"type": "string"
},
"from_timestamp": {
"type": "string"
},
"limit": {
"type": "integer"
},
"to_timestamp": {
"type": "string"
}
},
"required": [
"address",
"direction"
],
"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": {
"address": {
"type": "string"
},
"count": {
"type": "integer"
},
"direction": {
"type": "string"
},
"evidence_hash": {
"type": "string"
},
"filters": {
"properties": {
"asset": {
"type": "string"
},
"counterparty": {
"type": "null"
},
"from_timestamp": {
"type": "string"
},
"to_timestamp": {
"type": "string"
}
},
"type": "object"
},
"freshness": {
"properties": {
"age_seconds": {
"type": "integer"
},
"data_as_of": {
"type": "string"
},
"queried_at": {
"type": "string"
}
},
"type": "object"
},
"limit": {
"type": "integer"
},
"transfers": {
"items": {
"properties": {
"amount": {
"type": "string"
},
"amount_atomic": {
"type": "string"
},
"asset": {
"type": "string"
},
"block_number": {
"type": "integer"
},
"counterparty": {
"type": "string"
},
"direction": {
"type": "string"
},
"from": {
"type": "string"
},
"status": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"to": {
"type": "string"
},
"transaction_hash": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/base-transfer-search" # -> 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-transfer-search");
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-transfer-search")
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/548.json, and this resource appears in /discovery/resources and /discovery/search.