# Create Wallet

### Creating a Wallet

<mark style="color:green;">`GET`</mark> `/generate-crypto-address`

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |
| Token        | `<token>`          |

Request Parameters

{% hint style="info" %}
Ensure that the parameters are correctly specified to avoid errors in address generation
{% endhint %}

<table><thead><tr><th width="185">Name</th><th width="192">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>currency</code></td><td>string</td><td>The type of cryptocurrency for which the address is being generated</td></tr><tr><td><code>network</code></td><td>string</td><td>The blockchain network on which the cryptocurrency operates</td></tr><tr><td><code>preferred_name</code></td><td>string</td><td>A user defined name for the address to be generated</td></tr></tbody></table>

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "status": "1",
    "message": "0xab056bb4ae5729c8e14521ef8aa4f83be62bb0ae"
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}
