# Withdraw

## API Withdrawal structure:

<pre class="language-json"><code class="lang-json">{
    "maker": "str",
    "token": "str",
    "amount": {"type": "int", "min": 0},
    "salt": {"type": "int", "min": 0},
    "receiver": "str",
<strong>    "sign": {"type": "list", "min": 2,"max": 2, "item_schema": {"type": "str", "min": 0}},
</strong>    "gas_fee": {"type": "GasFee", "fields": "gas_fee_schema"}
}
</code></pre>

* **maker**: address of the trader who is performing the withdrawal
* **token:** token being withdrawn
* **receiver**:  wallet address of the token recipient
* **sign:** ecdsa sign of typed deposit message hash by order\_signer private key

{% hint style="info" %}
Note when building typed message for the withdraw, user should use the actual token addresses in the token field&#x20;
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://layer-akira.gitbook.io/layerakira-documentation/integration/trading/withdraw.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
