# Rest server transfer

**URL:** https://forum.cosmos.network/t/rest-server-transfer/3577
**Category:** Miscellaneous
**Created:** [April 23, 2020, 2:34am UTC](https://forum.cosmos.network/t/rest-server-transfer/3577 "2020-04-23T02:34:30Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![gblue1223](https://yyz1.discourse-cdn.com/flex031/user_avatar/forum.cosmos.network/gblue1223/32/120_2.png) [@gblue1223](https://forum.cosmos.network/u/gblue1223)
#### Post date: [April 23, 2020, 2:34am UTC](https://forum.cosmos.network/t/rest-server-transfer/3577/1 "2020-04-23T02:34:30Z")

</div>

I’m trying to send a coin through the gaiacli rest server  
But the signatures is null and the transfer doesn’t make.  
Should I implement the signature even for gaiacli?

sent

```auto
{
   "base_req":{
      "from":"xxx",
      "password":"xxx",
      "memo":"Test",
      "chain_id":"pcoin-chain",
      "account_number":"0",
      "sequence":"2",
      "gas":"100",
      "gas_adjustment":"1.2",
      "fees":[
         {
            "denom":"mpcn",
            "amount":"1"
         }
      ],
      "simulate":false
   },
   "amount":[
      {
         "denom":"mpcn",
         "amount":"1"
      }
   ]
}

```

recv

```auto
{
   "type":"cosmos-sdk/StdTx",
   "value":{
      "msg":[
         {
            "type":"cosmos-sdk/MsgSend",
            "value":{
               "from_address":"xxx",
               "to_address":"xxx",
               "amount":[
                  {
                     "denom":"mpcn",
                     "amount":"1"
                  }
               ]
            }
         }
      ],
      "fee":{
         "amount":[
            {
               "denom":"mpcn",
               "amount":"1"
            }
         ],
         "gas":"100"
      },
      "signatures":null,
      "memo":"Test"
   }
}

```
