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

# Transfer

Transfer tokens from one wallet to another one

Url:

```
POST /bitcoin/btc_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    |
| amount \*            | number | Amount of tokens     |
| fee                  | number | Size of fee          |

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

{% hint style="info" %}
Fee is optional.

It's used default fee if not set.
{% 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
```
