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

# token.transferred

> Triggered on blockchain token send/receive transfers.

Triggered on a token transfer. The event fires twice — once to the sender's organisation (`debit`) and once to the receiver's organisation (`credit`).

<Tabs>
  <Tab title="debit (sender)">
    ```json theme={null}
    {
      "webhook_event": "token.transferred",
      "direction": "debit",
      "user": {
        "_id": "<userId>",
        "email": "<string>",
        "name": "<string>"
      },
      "transfer": {
        "token": "<symbol>",
        "amount": "<number>"
      }
    }
    ```
  </Tab>

  <Tab title="credit (receiver)">
    ```json theme={null}
    {
      "webhook_event": "token.transferred",
      "direction": "credit",
      "user": {
        "_id": "<userId>",
        "email": "<string>",
        "name": "<string>"
      },
      "transfer": {
        "token": "<symbol>",
        "amount": "<number>"
      }
    }
    ```
  </Tab>
</Tabs>
