Skip to main content
GET
/
user
/
withdrawals
Get User Withdrawals
const options = {method: 'GET'};

fetch('https://gp-auth-module.prod.gnosispay.com/user/withdrawals', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": [
    {
      "txHash": "<string>",
      "amount": "<string>",
      "currency": "<string>",
      "status": "pending",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Response

Withdrawals retrieved successfully

data
object[]
required