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.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.02listed 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/base-transfer-search
| Category | Search and research |
|---|---|
| Provider host | api.oblique.markets |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 7 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": {
"address": "example",
"direction": "in"
},
"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": {
"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"
}