# How to retrieve wallet information, jettons, and NFTs with WalletKit on the Android platform (https://docs-fpm2731fy-ton-core-docs.vercel.app/llms/ecosystem/walletkit/android/data/content.md)



<Callout type="tip">
  All methods require an existing wallet instance. [Create or retrieve](/llms/ecosystem/walletkit/android/wallets/content.md) a wallet before accessing data.
</Callout>

Retrieve wallet information, Jettons, and NFTs using WalletKit.

## Wallet information [#wallet-information]

### Balance [#balance]

```kotlin
// Returns balance in nanoToncoin
val balance = wallet.getBalance()
```

### Address [#address]

```kotlin
val address = wallet.address
```

## Jettons [#jettons]

### Get all Jettons [#get-all-jettons]

```kotlin
val jettons = wallet.getJettons(limit = 10, offset = 0)
```

### Get specific Jetton balance [#get-specific-jetton-balance]

```kotlin
// Address of a Jetton minter contract
// E.g., EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs for USDT
val jettonAddress = "<JETTON_ADDRESS>"

// Returns balance in nanoToncoin with decimals count according to Jetton specification
val balance = wallet.getJettonBalance(jettonAddress)
```

### Get Jetton wallet address [#get-jetton-wallet-address]

```kotlin
// Address of a Jetton minter contract
// E.g., EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs for USDT
val jettonAddress = "<JETTON_ADDRESS>"
val walletAddress = wallet.getJettonWalletAddress(jettonAddress)
```

## NFTs [#nfts]

### Get all NFTs [#get-all-nfts]

```kotlin
val nfts = wallet.getNFTItems(limit = 10, offset = 0)
```

### Get specific NFT [#get-specific-nft]

```kotlin
// Address of an NFT item contract
// E.g., EQDkT3BSIU3CTwnZG9ZIdyWYmcnuaAEwGr_dsS1RFYqBTanY
val nftAddress = "<NFT_ADDRESS>"
val nft = wallet.getNFT(nftAddress)
```

## Next steps [#next-steps]

<Columns cols="2">
  <Card title="Transactions" href="./transactions">
    Transfer Toncoin, Jettons and NFTs
  </Card>

  <Card title="Manage wallets" href="./wallets">
    Create and manage TON wallets
  </Card>
</Columns>
