> For the complete documentation index, see [llms.txt](https://cetus-1.gitbook.io/cetus-developer-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cetus-1.gitbook.io/cetus-developer-docs/developer/via-sdk-v2/sdk-modules/cetusprotocol-xcetus-sdk/gets-owned-venft-information.md).

# Gets owned VeNFT information

Gets the VeNFT object for the specified account address.

```typescript
const wallet = 'YOUR_WALLET_ADDRESS'
const owner_venft = await sdk.XCetusModule.getOwnerVeNFT(wallet)

// ownerVeNFT
{
  creator: 'Cetus',
  description: "A non-transferrable NFT storing Cetus Escrowed Token xCETUS that represents a user's governance power on Cetus Protocol.",
  image_url: 'https://x77unmxbojk6nincdlzd57hhk5qgp5223rrrxrsplqqcs23vu5ja.arweave.net/v_9GsuFyVeahohryPvznV2Bn91rcYxvGT1wgKWt1p1I',
  link: 'https://app.cetus.zone',
  name: 'Cetus veNFT #14562',
  project_url: 'https://www.cetus.zone',
  id: '0x12adbc7e726cf2a5a9d4c4f0bdd08b6a49c876be99b2e650778a68d3891584bc',
  index: '14562',
  type: '0x9e69acc50ca03bc943c4f7c5304c2a6002d507b51c11913b247159c60422c606::xcetus::VeNFT',
  xcetus_balance: '1000000000'
}

```
