> For the complete documentation index, see [llms.txt](https://yogupay.gitbook.io/yogupay-payout-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yogupay.gitbook.io/yogupay-payout-api/withdrawals/fetch-withdrawals-by-address.md).

# Fetch Withdrawals by Address

<mark style="color:green;">`GET`</mark> `/` `crypto-withdrawals/address?{sender_address}`

The response should include the following query parameters to filter :&#x20;

```javascript
sender_address
```

**Headers**

| Name  | Value     |
| ----- | --------- |
| Token | `<token>` |

**Response**

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

```json
{
    "success": true,
    "message": "1 Withdrawal found for Sender 0x929b08b7a0042D99D342132e1c7280496BE47c45",
    "status_code": 200,
    "data": [
        {
 
            "sending_address": "0x929b08b7a0042D99D342132e1c7280496BE47c45",
            "receiving_address": "0x3089A1832Dbed44EBF7A21ab65a5C835671Cbb34",
            "network": "Ethereum",
            "hash":"0xaebb2d18ccff005e5b0e5407d40d4d58cfdbdb5ed33071a0957c000fa358065f",
            "merchant_reference":"qwerty124",
            "currency_code": "USDC",
            "amount" :10,
            "transaction_code": "FC1UCM3CWT",
            "transaction_charge": 0,
            "transaction_status": "Successful"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
