> ## Documentation Index
> Fetch the complete documentation index at: https://docs.avnu.fi/llms.txt
> Use this file to discover all available pages before exploring further.

# Claim Withdraw

> Claim unbonded STRK after 21-day period

## Overview

Claims STRK tokens that have completed the 21-day unbonding period. Only works if withdrawal was previously initiated and the waiting period has passed.

## Path Parameters

<ParamField path="poolAddress" type="string" required>
  Pool contract address
</ParamField>

<ParamField path="userAddress" type="string" required>
  User's wallet address
</ParamField>

## Request

<ParamField body="userAddress" type="string" required>
  User's wallet address
</ParamField>

## Response

<ResponseField name="chainId" type="string" required>
  Network identifier
</ResponseField>

<ResponseField name="calls" type="array" required>
  Transaction calls to execute
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://starknet.api.avnu.fi/staking/v3/pools/0x123abc/members/0x0456def/claim-withdraw" \
    -H "Content-Type: application/json" \
    -d '{
      "userAddress": "0x0456def..."
    }'
  ```

  ```typescript TypeScript theme={null}
  async function claimWithdraw(poolAddress: string, account: Account) {
    const response = await fetch(
      `https://starknet.api.avnu.fi/staking/v3/pools/${poolAddress}/members/${account.address}/claim-withdraw`,
      {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({
          userAddress: account.address
        })
      }
    );

    const { calls } = await response.json();
    const tx = await account.execute(calls);

    return tx.transaction_hash;
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "chainId": "0x534e5f4d41494e",
    "calls": [
      {
        "contractAddress": "0x123abc",
        "entrypoint": "claim_withdraw",
        "calldata": []
      }
    ]
  }
  ```
</ResponseExample>
