> 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-farms-sdk/farms-pool.md).

# Farms Pool

1. **Get Farms Pool List**

```typescript
const pool_data = await sdk.Farms.getFarmsPoolList()
```

2. **Get Specific Farms Pool by pool id**

```typescript
const pool_id = 'YOUR_POOL_ID'
const pool_data = await sdk.Farms.getFarmsPool(pool_id)
```

3. **Get Your Owned Position NFTs**&#x20;

```typescript
const wallet = 'YOUR_WALLET_ADDRESS'
const nft_list = await sdk.Farms.getOwnedFarmsPositionNFTList(wallet)
```

4. **Get Position NFT Details**

```typescript
const position_nft_id = 'YOUR_POSITION_NFT_ID'
const nft_data = await sdk.Farms.getFarmsPositionNFT(position_nft_id)
```
