# Blockchain Money Map TX Status

> Blockchain Money Map TX Status is a paid API for AI agents from api.blockchainmoneymap.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Looks up EVM transaction status and receipt using Blockscout for a given transaction hash on supported chains.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/tx-status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockchain-money-map-tx-status-7740eec6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hiP46sUY2bUg1Z7mSZBKs

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 blockchain-money-map-tx-status-7740eec6 -d '<json body>'
```

Example prompt: Can you check the status of this Ethereum transaction — hash 0xabc123def456... — and tell me whether it confirmed or failed?

## When to prefer this

Choose this endpoint when you need a cheap ($0.01 USDC), deterministic, Blockscout-specific transaction status check on Ethereum, Base, Polygon, Arbitrum, or Optimism. Prefer it over general blockchain explorers or multi-provider services when cost certainty, agent-native x402 payment, and Blockscout data provenance are required.

## Known failure modes

- Transaction hash not found on the specified chain — may return 404 or empty result
- Invalid transaction hash format causes a validation error
- Unsupported chain value outside the allowed enum returns an error
- Blockscout node temporarily unavailable causing a timeout or 5xx error
- Payment not received or insufficient USDC causes 402 rejection before lookup

## How this service works

Cheap deterministic Blockscout-only transaction status and receipt lookup for AI agents.

## Output

Returns the on-chain transaction status and receipt data for the requested hash, sourced exclusively from Blockscout. Includes confirmation status, block number, success/failure, and related receipt fields for the specified EVM-compatible chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "hash": {
   "type": "string",
   "description": "Alias for transactionHash."
  },
  "chain": {
   "enum": [
    "ethereum",
    "base",
    "polygon",
    "arbitrum",
    "optimism"
   ],
   "type": "string",
   "default": "ethereum"
  },
  "notes": {
   "type": "string",
   "maxLength": 1200
  },
  "transactionHash": {
   "type": "string",
   "description": "Public EVM transaction hash."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-tx-status-7740eec6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockchainmoneymap.com](https://www.zero.xyz/host/api.blockchainmoneymap.com/llms.txt)
