GET
/
wallets
/
{walletId}
curl --request GET \
  --url https://protocol-sandbox.lumx.io/v2/wallets/{walletId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "address": "<string>",
  "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "blockExplorerUrl": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "tokens": [
    {
      "contractId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "uriNumber": 123,
      "blockchainName": "Ethereum",
      "contractAddress": "<string>",
      "contractType": "fungible",
      "name": "<string>",
      "tokenId": "<string>",
      "uri": "<string>",
      "metadata": {},
      "symbol": "<string>",
      "quantity": 123
    }
  ]
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <API_KEY>.

Path Parameters

walletId
string
required

The ID of the wallet.

Response

200 - application/json
id
string

The ID for this wallet.

address
string

The blockchain address for this wallet.

projectId
string

The ID of the project.

blockExplorerUrl
string | null

The block explorer url of this wallet.

createdAt
string

The timestamp from when the wallet was created.

updatedAt
string

The timestamp from when the wallet was last updated.

tokens
object[]

The tokens owned by this wallet.