# Pending Approvals

## Get Pending Withdrawal Approvals

<mark style="color:blue;">`GET`</mark> `https://api.vaultoro.com/v1/private/coins/withdraw/approval`

This endpoint allows you fetch all pending withdrawal approvals of a user

#### Headers

| Name          | Type   | Description  |
| ------------- | ------ | ------------ |
| Authorization | string | Bearer token |

{% tabs %}
{% tab title="200 If there are not any, the approvals array will be an empty array." %}

```
{
    "data": {
        "approvals": [
            {
                "referenceId": "c08e8kkqryr4dm",
                "asset": "ETH",
                "address": "0xc310800fbad7fe91acf195dac428430e4c847e6a",
                "quantity": "0.004",
                "createdAt": "2021-07-06T11:23:01.000Z"
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}
