# Base Scout Transaction Status

> Base Scout Transaction Status is a paid API for AI agents from base-scout.botty4541.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up the on-chain status, confirmations, and details of a Base chain transaction by its hash

## Facts

- Endpoint: GET https://base-scout.botty4541.workers.dev/service/tx
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-scout-transaction-status-0e0e4c69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t0OlLabeqGo9kZnrL-Hds

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability base-scout-transaction-status-0e0e4c69
```

Example prompt: Can you check the status of my Base chain transaction 0x4a3b...c9f2 — I want to know if it confirmed and how many block confirmations it has?

## When to prefer this

Choose this endpoint when you need quick, pay-per-call transaction status lookups on the Base chain without setting up a full node or indexer subscription. Ideal for AI agents and bots that need on-demand tx verification with micropayment billing (0.01 USDC/call via x402), rather than committing to a monthly API plan. Best for Base (Coinbase L2) specifically — not Ethereum mainnet or other chains.

## Known failure modes

- Invalid or malformed tx hash returns an error response
- Transaction not yet indexed may return empty or pending data
- Non-Base-chain transaction hashes will not be found
- Payment failure (insufficient USDC balance) blocks the request
- Network or RPC downtime may cause lookup failures

## How this service works

Pay-per-call Base chain utilities for AI agents and bots: tx status, wallet balances, token metadata, prices. 0.01 USDC per call on Base (x402). Price: 0.01 USDC per call on Base (x402).

## Output

Returns a JSON object with ok boolean, and a data object containing: from and to addresses, tx hash, status (e.g. success/failed), gasUsed, valueEth (ETH amount transferred), blockNumber, and confirmations count. Also includes payer and transaction fields for x402 payment metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "hash"
 ],
 "properties": {
  "hash": {
   "type": "string",
   "description": "0x tx hash"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ok": {
   "type": "boolean"
  },
  "data": {
   "type": "object",
   "properties": {
    "to": {
     "type": [
      "string",
      "null"
     ]
    },
    "from": {
     "type": "string"
    },
    "hash": {
     "type": "string"
    },
    "status": {
     "type": "string"
    },
    "gasUsed": {
     "type": [
      "integer",
      "null"
     ]
    },
    "valueEth": {
     "type": "string"
    },
    "blockNumber": {
     "type": [
      "integer",
      "null"
     ]
    },
    "confirmations": {
     "type": "integer"
    }
   }
  },
  "payer": {
   "type": "string"
  },
  "transaction": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-scout-transaction-status-0e0e4c69/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from base-scout.botty4541.workers.dev](https://www.zero.xyz/host/base-scout.botty4541.workers.dev/llms.txt)
