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



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

Retrieve wallet information, Jettons, and NFTs using WalletKit.

## Wallet information [#wallet-information]

### Balance [#balance]

```swift
// Returns balance in nanoToncoin
let balance = try await wallet.balance()
```

### Address [#address]

```swift
let address = wallet.address
```

## Jettons [#jettons]

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

```swift
let jettons = try
    await wallet.jettons(limit: TONLimitRequest(limit: 10, offset: 0))
```

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

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

// Returns balance in nano with decimals count according to Jetton specification
let balance = try await wallet.jettonBalance(jettonAddress: jettonAddress)
```

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

```swift
// Address of a Jetton minter contract
// E.g., EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs for USDT
let jettonAddress = "<JETTON_ADDRESS>"
let walletAddress = try
    await wallet.jettonWalletAddress(jettonAddress: jettonAddress)
```

## NFTs [#nfts]

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

```swift
let nfts = try await wallet.nfts(limit: TONLimitRequest(limit: 10, offset: 0))
```

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

```swift
// Address of an NFT
// E.g., EQDkT3BSIU3CTwnZG9ZIdyWYmcnuaAEwGr_dsS1RFYqBTanY
let nftAddress = "<NFT_ADDRESS>"
let nft = wallet.nft(address: 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>
