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

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

Documentation Index

Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Response

Deposits retrieved successfully

data
object[]
required