Display your Wallet

You can display your wallet information to check your balance and other.

📘

GET METHOD

{{baseUrl}}/api/v2/wallets

👍

Response

{
    "status": true,
    "content": {
        "data": [
            {
                "cur": "NGN",
                "currency": "Naira",
                "country": "Nigeria",
                "flag": "https://qwid.io/assets/svg/flag/ng.svg",
                "id": 65,
                "balance": 0,
                "created_at": "2022-07-26T10:17:14.000000Z",
                "updated_at": "2022-07-26T10:17:14.000000Z"
            },
            {
                "cur": "USD",
                "currency": "Dollar",
                "country": "United State Of America",
                "flag": "https://qwid.io/assets/svg/flag/us.svg",
                "id": 68,
                "balance": 0,
                "created_at": "2022-07-26T10:17:14.000000Z",
                "updated_at": "2022-07-26T10:17:14.000000Z"
            },
            {
                "cur": "GBP",
                "currency": "Pounds",
                "country": "United Kingdom",
                "flag": "https://qwid.io/assets/svg/flag/gb.svg",
                "id": 67,
                "balance": 0,
                "created_at": "2022-07-26T10:17:14.000000Z",
                "updated_at": "2022-07-26T10:17:14.000000Z"
            },
            {
                "cur": "EUR",
                "currency": "Euro",
                "country": "Europe",
                "flag": "https://qwid.io/assets/svg/flag/eu.svg",
                "id": 66,
                "balance": 0,
                "created_at": "2022-07-26T10:17:14.000000Z",
                "updated_at": "2022-07-26T10:17:14.000000Z"
            }
        ]
    }
}

Display Wallet with Currency

You can also get your wallet buy filtering the wallet information using the currency

🚧

Note

You can only supply a Currency ISO Code of 3-character at the currency

📘

POST METHOD

{{baseUrl}}/api/v2/wallets
{
    "cur" : "NGN"
}
FieldRequiredDescription
curtrueCurrency ISO code i.e NGN

👍

Response

{
    "status": true,
    "content": {
        "data": [
            {
                "cur": "NGN",
                "currency": "Naira",
                "country": "Nigeria",
                "flag": "https://qwid.io/assets/svg/flag/ng.svg",
                "id": 65,
                "userId": 3,
                "balance": 0,
                "created_at": "2022-07-26T10:17:14.000000Z",
                "updated_at": "2022-07-26T10:17:14.000000Z"
            }
        ]
    }
}