# Native Transfer Event

When a native transfer event occurs, Crypitor sends a JSON payload to your webhook endpoint. Below is an example of such a payload and an explanation of its structure:

**Example Payload:**

```json
{
  "chain": "Avalanche",
  "monitorId": "mo_zzn4ntlNbuyEs18d",
  "hash": "0xd7af0b3df64283d569645d2f19f210c05af17bc56161c3e78fd2748a9615b4f3",
  "blockNum": 45835989,
  "fromAddress": "0xbbf9a038fa904895f0fd907337dec1f156effab2",
  "toAddress": "0xbbf9a038fa904895f0fd907337dec1f156effab2",
  "nativeAmount": "123000000000000000",
  "type": "in",
  "confirm": false,
  "category": "Native",
  "dateCreated": "2024-05-24T09:41:52.193Z",
  "txnIndex": 1,
  "associatedAddress": "0xbbf9a038fa904895f0fd907337dec1f156effab2",
  "eventId": "70ee1f489c9746549dd35af289ba86e7",
  "tags": []
}
```

#### Data Explanation

* **chain:** The blockchain network where the event occurred (e.g., Avalanche)
* **monitorId:** Unique identifier for the monitor that captured the event.
* **hash:** Transaction hash associated with the event.
* **blockNumber:** Block number in which the transaction was included.
* **fromAddress:** Address from which the native cryptocurrency was sent.
* **toAddress:** Address to which the native cryptocurrency was sent.
* **nativeAmount:** Amount of native cryptocurrency transferred (in the smallest unit, e.g., wei for ETH).
* **type:** Transaction type (e.g., "in" for incoming).
* **confirm:** Boolean indicating whether the transaction is confirmed.
* **category:** Type of transfer (e.g., Native for native cryptocurrency).
* **dateCreated:** Timestamp of when the event was detected.
* **txnIndex:** Position of the transaction in the block.
* **associatedAddress:** Wallet address associated with the event.
* **eventId:** Unique identifier for the event.
* **tags:** Tags associated with the monitor (if any).


---

# 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.crypitor.com/crypitor-service/how-to-use/native-transfer-event.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.
