> 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/ethereum/eth_token_create.md).

# Token create

Administrator can create the token

Url:

```
POST /ethereum/eth_token_create
```

List of parameters

| Name                | Type   | Description            |
| ------------------- | ------ | ---------------------- |
| wallet \*           | string | Wallet address         |
| wallet\_pwd \*      | string | Wallet password        |
| name \*             | string | Full name of the token |
| symbol \*           | string | Symbol of the token    |
| total\_amount \*    | number | Total amount           |
| eth\_price\_rate \* | number | Price rate             |
| eth\_min\_invest \* | number | Minimal investment     |
| 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
```
