Skip to main content
POST
/
staking
/
v3
/
pools
/
{poolAddress}
/
members
/
{userAddress}
/
claim-withdraw
curl -X POST "https://starknet.api.avnu.fi/staking/v3/pools/0x123abc/members/0x0456def/claim-withdraw" \
  -H "Content-Type: application/json" \
  -d '{
    "userAddress": "0x0456def..."
  }'
{
  "chainId": "0x534e5f4d41494e",
  "calls": [
    {
      "contractAddress": "0x123abc",
      "entrypoint": "claim_withdraw",
      "calldata": []
    }
  ]
}

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.

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

poolAddress
string
required
Pool contract address
userAddress
string
required
User’s wallet address

Request

userAddress
string
required
User’s wallet address

Response

chainId
string
required
Network identifier
calls
array
required
Transaction calls to execute
curl -X POST "https://starknet.api.avnu.fi/staking/v3/pools/0x123abc/members/0x0456def/claim-withdraw" \
  -H "Content-Type: application/json" \
  -d '{
    "userAddress": "0x0456def..."
  }'
{
  "chainId": "0x534e5f4d41494e",
  "calls": [
    {
      "contractAddress": "0x123abc",
      "entrypoint": "claim_withdraw",
      "calldata": []
    }
  ]
}