Run Base USDC transfer history.
API Acre verifies the exact x402 price, Base network, recipient, and request before any wallet opens. One successful call costs $0.005 USDC.
API Acre never receives your private key; signing stays inside your wallet.
1 · Run one call
- Network
- Recipient
- USDC contract
No ETH gas needed. Connecting does not sign or pay. Coinbase Wallet supports desktop QR and mobile handoff without a browser extension. This EIP-3009 payment needs only the displayed USDC on Base—not ETH for gas—because the facilitator submits settlement. Reject any later prompt that differs from the verified amount or recipient.
Copy an exact-cap Agentic Wallet command
Running this command may automatically spend up to $0.005 USDC after Coinbase Agentic Wallet authentication and policy checks; copying it does nothing. npx --yes approves package installation. Use a separate low-value wallet and review the verified request before running it.
Review Coinbase command
npx --yes awal@latest x402 pay https://apiacre.com/v1/crypto/base-usdc-transfers \
-X POST \
-d '{"address":"0x1111111111111111111111111111111111111111","lookback_blocks":2000,"direction":"any","limit":25,"block_tag":"safe"}' \
--max-amount 5000 \
--jsonAlternative third-party AgentCash command
The first command checks without paying; running fetch may pay up to the same exact cap.
npx --yes agentcash@latest check https://apiacre.com/v1/crypto/base-usdc-transfers
npx --yes agentcash@latest fetch https://apiacre.com/v1/crypto/base-usdc-transfers \
--method POST \
--header 'content-type: application/json' \
--body '{"address":"0x1111111111111111111111111111111111111111","lookback_blocks":2000,"direction":"any","limit":25,"block_tag":"safe"}' \
--payment-protocol x402 \
--payment-network base \
--max-amount 0.005See the result before connecting · Curated static example
Base USDC transfer history returns structured JSON. This example is static; the paid call returns a fresh result and settlement receipt.
{
"request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a",
"service": "crypto.base-usdc-transfers",
"version": "1",
"data": {
"network": "eip155:8453",
"address": "0x1111111111111111111111111111111111111111",
"asset": {
"name": "USD Coin",
"symbol": "USDC",
"contract": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"decimals": 6
},
"blockRange": {
"requestedTag": "safe",
"fromBlock": 34565891,
"toBlock": 34567890,
"toBlockHash": "0x1111111111111111111111111111111111111111111111111111111111111111",
"toBlockTimestamp": "2026-08-10T16:00:00+00:00",
"requestedLookbackBlocks": 2000,
"scannedBlocks": 2000
},
"direction": "any",
"eventSignature": "Transfer(address,address,uint256)",
"topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"queriedLogCount": 1,
"detected": 1,
"returned": 1,
"truncated": false,
"duplicatesRemoved": 0,
"removedSkipped": 0,
"transfers": [
{
"blockNumber": 34567800,
"blockHash": "0x2222222222222222222222222222222222222222222222222222222222222222",
"transactionHash": "0x3333333333333333333333333333333333333333333333333333333333333333",
"transactionIndex": 4,
"logIndex": 7,
"from": "0x2222222222222222222222222222222222222222",
"to": "0x1111111111111111111111111111111111111111",
"direction": "incoming",
"amountAtomic": "12500000",
"amountUsdc": "12.5",
"explorerUrl": "https://basescan.org/tx/0x3333333333333333333333333333333333333333333333333333333333333333"
}
],
"networkRequestsMade": 2,
"rpcCallsMade": 3,
"readOnly": true,
"transactionBroadcast": false,
"warnings": [],
"limitations": [
"Only Circle's official native USDC contract on Base mainnet is queried.",
"The result covers only the resolved bounded block range, not complete account history.",
"Finality and provider freshness depend on the requested block tag and public Base RPC."
],
"addressExplorerUrl": "https://basescan.org/address/0x1111111111111111111111111111111111111111",
"source": "https://docs.base.org/base-chain/api-reference/ethereum-json-rpc-api/eth_getLogs",
"usdcSource": "https://developers.circle.com/stablecoins/usdc-contract-addresses",
"tokenSource": "https://eips.ethereum.org/EIPS/eip-20",
"disclaimer": "Public onchain event evidence only. A transfer does not establish identity, ownership, authorization, commercial purpose, compliance status, or current balance."
},
"meta": {
"duration_ms": 42,
"cached": false,
"sources": [],
"warnings": [],
"next_actions": []
}
}Review exact request JSON
2 · Authorize one call
Connected wallet:
Signing authorizes only the verified amount and recipient for this request. Reject the wallet prompt if anything differs.
Result
Settlement receipt
Change the request (optional)
The default request is verified automatically. Editing it invalidates the quote and requires this no-payment verification again.
Prefer your own client? Use the official x402 SDK examples. Browser checkout requires an EVM wallet with USDC on Base; command-line buyers require their own separately configured wallet and spending policy.