# Transaction Receipts by Block

> Transaction Receipts by Block is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches all transaction receipts for a given block on an EVM-compatible network, identified by block hash or block number

## Facts

- Endpoint: POST https://stablecrypto.dev/api/alchemy/utility/transaction-receipts
- 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/transaction-receipts-by-block-f2ff9c82
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RY4GgBSDrB5SdUf7-sC6e

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 transaction-receipts-by-block-f2ff9c82 -d '<json body>'
```

Example prompt: Can you pull all the transaction receipts for block 0x12A05F200 on eth-mainnet so I can see which transactions succeeded and how much gas each one used?

## When to prefer this

Use this endpoint when you need receipt data for ALL transactions in a block at once, rather than querying receipts one by one. Ideal for block-level analytics, gas profiling, log aggregation, or auditing which transactions in a block succeeded or failed. Prefer over individual eth_getTransactionReceipt calls when processing an entire block.

## Known failure modes

- Invalid or unsupported network slug returns an error
- Block hash or block number not found on the specified network
- Both blockHash and blockNumber omitted with only network provided — ambiguous request
- Block number not in valid hex format causes parsing error
- Network congestion or Alchemy upstream timeout may delay response
- Requesting a very recent block before it is fully indexed may return empty or partial results

## How this service works

Pay-per-request access to CoinGecko, DefiLlama, Alchemy, and Etherscan APIs. No auth, no subscriptions.

## Output

An object containing all transaction receipts for the specified block, including per-transaction data such as status (success/failure), gas used, logs emitted, contract addresses created, and transaction hashes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "network": {
   "type": "string",
   "description": "Alchemy network slug, e.g. eth-mainnet, base-mainnet"
  },
  "blockHash": {
   "type": "string",
   "description": "Block hash"
  },
  "blockNumber": {
   "type": "string",
   "description": "Block number in hex"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/transaction-receipts-by-block-f2ff9c82/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
