# Block & Transaction Exploration

### **Get Specific Block**

**You:**

```
Show me details for block number 12345
```

**Claude will:**

* Use `zetrix_get_block` with blockNumber: 12345
* Display block header and transaction info

***

### **Get Transaction Details**

**You:**

```
What are the details of transaction 0xabc123def456...?
```

**Claude will:**

* Use `zetrix_get_transaction`
* Show source address, operations, status, fees

***

### **Explore Recent Transaction History**

**You:**

```
Show me recent transactions from block 12345
```

**Claude will:**

* Use `zetrix_get_transaction_history` with ledgerSeq: 12345
* List all transactions in that block

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.zetrix.com/en/developer-resources/zetrix-mcp-server/usage-example/block-and-transaction-exploration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
