> ## Documentation Index
> Fetch the complete documentation index at: https://docs.uniblock.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# debug_getRawReceipts

> Returns the consensus-encoding of all receipts in a single block.

### Parameters

<ParamField query="chainId" type="string" default="100" required>
  Unique identifier for a blockchain network.
</ParamField>

<ParamField body="id" type="number" default={1} required>
  Request identifier used to match responses.
</ParamField>

<ParamField body="jsonrpc" type="string" default="2.0" required>
  JSON-RPC version.
</ParamField>

<ParamField body="method" type="string" default="debug_getRawReceipts" required>
  JSON-RPC method name.
</ParamField>

<ParamField body="params" type="object" default={["0x1"]} placeholder="[&#x22;0x1&#x22;]" required>
  The parameters for method debug\_getRawReceipts: \[blockNrOrHash].

  Positional parameters for <code>debug\_getRawReceipts</code>:

  <ul>
    <li><code>params\[]</code>: The block number or hash.</li>
  </ul>
</ParamField>

### Returns

<ResponseField name="result" type="object">
  The consensus-encoding of all receipts.
</ResponseField>

<RequestExample>
  ```bash Curl theme={null}
  curl --request POST \
    --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=100 \
    --header 'content-type: application/json' \
    --data '{
      "id": 1,
      "jsonrpc": "2.0",
      "method": "debug_getRawReceipts",
      "params": [
        "0x1"
      ]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "result": {}
  }
  ```
</ResponseExample>
