👋
Wisdom
  • Core Resources
    • Create Address
    • Update Address
    • Get Currency Rate
    • Get Wallet
    • Get Webhook Event
    • Get Available Currency
    • Create Withdrawal
    • Get Withdrawal Detail
    • Get Wallet NFT
    • Create Withdrawal NFT
  • Webhook Notification
  • Classepay
    • Core Resources
      • Verify By Username In Classe
      • Create Withdrawal Classepay
Powered by GitBook
On this page
  • Get all wallets
  • Get wallet by symbol
  1. Core Resources

Get Wallet

Get wallet by symbol or get all wallets of your account.

Get all wallets

GET https://fairmarketcoin.com/api/v1/wallets

Headers

Name
Type
Description

X-API-SECRET**

String

X-API-KEY**

String

Request Body

Name
Type
Description

fiat_currency

String

must be in (USD, THB) THB by default

{
    "apiVersion": "1.0",
    "success": true,
    "message": "Successfully getting wallet.",
    "data": {
        "username": "username",
        "total_asset": "284311.92",
        "wallets": [
            {
                "uuid": "wl_ndQ1lGEQlv3wHP1M",
                "balance_crypto": "2.06081004",
                "balance_fiat": "284311.92",
                "fiat_currency": "THB",
                "currency": {
                    "symbol": "ETH"
                }
            },
            {
                "uuid": "wl_DBh38PIkhFV2snHu",
                "balance_crypto": "0.00000000",
                "balance_fiat": "0.00",
                "fiat_currency": "THB",
                "currency": {
                    "symbol": "USDT"
                }
            },
            {
                "uuid": "wl_D5yw8WdVmKt7tO1y",
                "balance_crypto": "0.00000000",
                "balance_fiat": "0.00",
                "fiat_currency": "THB",
                "currency": {
                    "symbol": "WIS"
                }
            }
        ]
    }
}

Get wallet by symbol

GET https://fairmarketcoin.com/api/v1/wallets?symbol=ETH

Headers

Name
Type
Description

X-API-SECRET**

String

X-API-KEY**

String

Request Body

Name
Type
Description

fiat_currency

String

must be in (USD, THB) THB by default

symbol**

String

PreviousGet Currency RateNextGet Webhook Event

Last updated 2 years ago