> For the complete documentation index, see [llms.txt](https://docs.liquidapps.io/liquidapps-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.liquidapps.io/liquidapps-documentation/dapp-service-providers/dsps/dsp-api-endpoints/liquidlink.md).

# LiquidLink

## Generate Key for EOSIO

<mark style="color:green;">`POST`</mark> `https://api.dsp.io/v1/dsp/signfndspsvc/genkey`

#### Request Body

| Name        | Type   | Description |
| ----------- | ------ | ----------- |
| chain       | string | chain       |
| chain\_type | string | chain type  |
| account     | string | account     |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{    "name": "Cake's name",    "recipe": "Cake's recipe name",    "cake": "Binary cake"}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{    "message": "Ain't no cake like that."}
```

{% endtab %}
{% endtabs %}

## Get Key for EVM (Ethereum)

<mark style="color:green;">`POST`</mark> `https://api.dsp.io/v1/dsp/signfndspsvc/getkey`

Get key

#### Request Body

| Name        | Type   | Description |
| ----------- | ------ | ----------- |
| chain       | string | chain       |
| chain\_type | string | chain type  |
| account     | string | account     |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{    "name": "Cake's name",    "recipe": "Cake's recipe name",    "cake": "Binary cake"}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{    "message": "Ain't no cake like that."}
```

{% endtab %}
{% endtabs %}
