# Get Single Withdrawal Fee

<mark style="color:green;">**`GET`**</mark> `https://api.sfox.com/v1/withdraw-fee/:currency`

Retrieve the withdrawal fee for a currency.

### Path Parameters

<table><thead><tr><th width="236">Name</th><th width="100">Type</th><th>Description</th></tr></thead><tbody><tr><td><strong><code>currency</code></strong> <mark style="color:red;">required</mark></td><td>string</td><td>Retrieve the withdrawal fee for this currency.</td></tr></tbody></table>

### Response Body

<table><thead><tr><th width="239">Key</th><th width="99"></th><th>Description</th></tr></thead><tbody><tr><td><strong><code>fee</code></strong></td><td>number</td><td>The withdrawal fee for this currency. Fee is the quantity of the currency.</td></tr></tbody></table>

### Responses

<details>

<summary><mark style="color:green;">200</mark></summary>

```json
{
      "fee": 0.001
}
```

</details>

### Example Requests

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

```bash
curl -H 'Authorization: Bearer <API_TOKEN>' \
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/withdraw-fee/btc'
```

{% endtab %}

{% tab title="NodeJS" %}

```javascript
const axios = require('axios');

axios({
  method: 'get',
  url: 'https://api.sfox.com/v1/withdraw-fee/btc',
  headers: {
    'Authorization': 'Bearer <API_KEY>'
  }
}).then(response => {
  console.log(response)
}).catch(err => {
  console.error(err)
})
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

data = requests.get(
  "https://api.sfox.com/v1/withdraw-fee/btc",
  headers={
    "Authorization": "Bearer <API_KEY>",
  }
)
print(data)
```

{% endtab %}
{% endtabs %}
