# Fetch Wallets

<mark style="color:green;">`GET`</mark> `/wallets/{network}`

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |
| Token        | `<token>`          |

Query Params

| Name                 | Type   | Description                                       |
| -------------------- | ------ | ------------------------------------------------- |
| <kbd>`network`</kbd> | string | The cryptocurrency network (e.g., Ethereum/Tron). |

**Response**

The response will be in JSON format and contains the following structure

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

```json
{
    "status": "1",
    "message": "Request was successful",
    "count": 1,
    "data": [
        {
            "crypto_network": "Tron",
            "address_name": "Yogupay TRC20",
            "crypto_address": "TL1234aiqsJacvpji9QWMBazeEbTCKHpTN",
            "currency": "USDT",
            "created_at": "2025-07-30T06:42:08.000Z"
        }
    ]
}
```

{% endtab %}

{% tab title="Unsuccessful" %}

```json
{
    "status": "0",
    "message": "No wallets in the provided network "
}
```

{% endtab %}
{% endtabs %}
