> For the complete documentation index, see [llms.txt](https://centr.gitbook.io/netcs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://centr.gitbook.io/netcs/api/functions/tokentransferget.md).

# TokenTransferGet()

Before calling the function make sure you have the Connector object initialized.&#x20;

{% content-ref url="/pages/-MgM38pBUeXL96\_AW6Jy" %}
[Understanding Connector Object](/netcs/getting-started/understanding-connector-object.md)
{% endcontent-ref %}

## Function Call&#x20;

| Field   | Type                                                     | Description                            |
| ------- | -------------------------------------------------------- | -------------------------------------- |
| `Token` | ​`string`​                                               | Ed25519 Base58 Token Key               |
| `TxsID` | [TransactionId](/netcs/api/basic-types/transactionid.md) | TransactionId of needed Token Transfer |

```csharp
TokenBalancesGet("Input here Base58 Token Address",new TransactionId());
```

{% hint style="info" %}
Return value of function: [TokenTransfersResult](/netcs/api/result-types/tokentransfersresult.md)
{% endhint %}

## Example

{% tabs %}
{% tab title="C#" %}

```csharp
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.TokenTransfersResult TokenTransfer = connect_.TokenTransferGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct",0,10);
Console.WriteLine(TokenTransfer);
```

{% endtab %}

{% tab title="Python" %}

```python
Connect_ =  Connector("165.22.212.253:9090")
txsid = TransactionId()
txsid.poolSeq = 5000
txsid.index = 1
print(Connect_.TokenTransferGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct",txsid))
```

{% endtab %}

{% tab title="Javascript" %}

```javascript
var connect_ = new Connector("194.163.152.177", 9091);
connect_.TokenTransferGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct").then((res) => {connect_.Close();console.log(res); });
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Return value of function: [TokenTransfersResult](/netcs/api/result-types/tokentransfersresult.md)
{% endhint %}

#### Output of Example

Output is printed via ObjectDumper

```scheme
{TokenTransfersResult}
  Status: {APIResponse}
    Code: 0
    Message: "Success: "
  Count: 0
  Transfers: ...
```
