← oblique.markets · all endpoints

POST /api/v1/paid/base-transfer-search — $0.02 per call

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.

Price$0.02 per call (20000 atomic USDC, scheme exact)
Categorychain-data
Railsx402 · USDC on Base (eip155:8453) and Solana · MPP pathUSD on Tempo
Canonical URLhttps://api.oblique.markets/api/v1/paid/base-transfer-search

Try it

curl -i https://api.oblique.markets/api/v1/paid/base-transfer-search
# → HTTP 402 with the exact payment requirements; pay, then retry with PAYMENT-SIGNATURE (x402) or Authorization: Payment (MPP)

Input schema

{
 "type": "object",
 "required": [
  "address",
  "direction"
 ],
 "properties": {
  "address": {
   "type": "string",
   "pattern": "^0x[0-9a-fA-F]{40}$"
  },
  "direction": {
   "type": "string",
   "enum": [
    "in",
    "out",
    "both"
   ]
  },
  "asset": {
   "type": "string",
   "pattern": "^0x[0-9a-fA-F]{40}$"
  },
  "counterparty": {
   "type": "string",
   "pattern": "^0x[0-9a-fA-F]{40}$"
  },
  "from_timestamp": {
   "type": "string",
   "format": "date-time"
  },
  "to_timestamp": {
   "type": "string",
   "format": "date-time"
  },
  "limit": {
   "type": "integer",
   "minimum": 1,
   "maximum": 50
  }
 }
}

Example output

{
 "address": "0x1111111111111111111111111111111111111111",
 "direction": "in",
 "filters": {
  "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
  "counterparty": null,
  "from_timestamp": "2026-08-10T00:00:00.000Z",
  "to_timestamp": "2026-08-11T00:00:00.000Z"
 },
 "limit": 25,
 "count": 1,
 "transfers": [
  {
   "transaction_hash": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
   "block_number": 33712501,
   "timestamp": "2026-08-10T12:00:00.000Z",
   "direction": "in",
   "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
   "amount_atomic": "1250000",
   "amount": "1.250000",
   "from": "0x2222222222222222222222222222222222222222",
   "to": "0x1111111111111111111111111111111111111111",
   "counterparty": "0x2222222222222222222222222222222222222222",
   "status": "success"
  }
 ],
 "freshness": {
  "queried_at": "2026-08-11T12:00:01.000Z",
  "data_as_of": "2026-08-10T12:00:00.000Z",
  "age_seconds": 86401
 },
 "evidence_hash": "sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}

Clients

Worked TypeScript/Python clients and MCP configs: oblique-markets/oblique-examples · Agent Skills: oblique-markets/skills

Pay per call with x402 (USDC on Base or Solana) or MPP (pathUSD on Tempo). No accounts. Machine doors: /.well-known/x402.json · /openapi.json · /llms-full.txt · MCP · humans: remote.observer