# Token pure transfer

Url:

```
POST /ethereum/token_pure_transfer
```

List of parameters

| Name                 | Type   | Description          |
| -------------------- | ------ | -------------------- |
| wallet\_from \*      | string | From wallet address  |
| wallet\_pwd\_from \* | string | From wallet password |
| wallet\_to \*        | string | To wallet address    |
| contract\_address \* | string | Address of contract  |
| amount \*            | number | Amount of tokens     |
| gas\_price           | number | Gas price            |

{% hint style="danger" %}
\* required parameters.
{% endhint %}

{% hint style="info" %}
gas\_price is optional.
{% endhint %}

Success response:

```ruby
{message: message, success: true, data: response, operations_count: operations_count}, status: 200
```

Fail response:

```ruby
{message: message, success: false, data: {}, operations_count: operations_count}, status: 200
```
