GET
/
wallet
/
{address}
Get wallet by address
curl --request GET \
  --url https://api.decentri.org/wallet/{address}
[
  {
    "address": "0x1234567890123456789012345678901234567890",
    "object": "wallet",
    "balances": {
      "token": "0x4dad19801eff64eaaa7c78e466ce3678d0b1fd94",
      "total": "1000",
      "available": {
        "amount": "0"
      },
      "frozen": {
        "amount": "1000"
      }
    }
  }
]

Path Parameters

address
string
required

Response

The wallet has been successfully retrieved

address
string
required

The address associated with the user’s wallet.

Example:

"0x1234567890123456789012345678901234567890"

object
string
required

A string that specifies the type of the object. All objects of the same type share this value.

Example:

"wallet"

balances
object
required

Token balances held by the wallet