> 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-burn-sdk/gets-the-list-of-burn-positions-by-wallet-address.md).

# Gets the list of burn positions by wallet address

`getBurnPositionList` fetches a list of burn positions for a specified account by calling the `sdk.Burn.getBurnPositionList(wallet_address)` method.

```typescript
const wallet_address = '0x...'
const position_ids = await sdk.Burn.getBurnPositionList(wallet_address)

// result:
positionIds: ['0x1b9b4f2271bc69df97ddafcb3f645...']
```
