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

# Crypto deposit success v1

> This callback will be triggered when the crypto asset is successfully deposited to user's Mudrex wallet address.



## OpenAPI

````yaml /openapi-v1.json webhook crypto-deposit-success
openapi: 3.1.0
info:
  title: Saber Money API (v1)
  version: v1
  description: >-
    ## Authentication


    There is no standalone API-key auth — every request must be **signed**. An
    API key by itself authenticates nothing. Each call requires four headers
    together: `X-Api-Key` (your key), `X-Signature` (HMAC-SHA256 of `apiKey +
    timestamp` — or `apiKey + timestamp + userId` when `X-User-Id` is required —
    keyed with your API secret), `X-Timestamp` (unix seconds), and
    `X-Request-Id` (any unique string per request). The signature must be
    computed by a client script; there is no way to derive it by hand. Use the
    HMAC Generator flow to compute valid values for manual testing.


    ## Common Authentication Errors


    - **Invalid Client ID**: {"error_code":6092,"message":"X-Client-Id
    invalid","success":false}

    - **Invalid Secret**: {"error_code":6090,"message":"invalid
    secret","success":false}

    - **Timestamp (Older than 10 secs)**:
    {"errors":{"error_code":6093,"text":"timestamp expired"},"success":false}
servers:
  - url: https://api.saber.money
security: []
paths: {}

````

## Related topics

- [Deposit success webhook v1](/api-reference/transfer-crypto/deposit-success-webhook-v1.md)
- [Get Crypto Deposit Transaction Details (v1)](/api-reference/wallet-operations/get-crypto-deposit-transaction-details-v1.md)
- [Crypto withdraw success v1](/api-reference/webhooks/crypto-withdraw-success-v1.md)
- [Crypto buy success v1](/api-reference/webhooks/crypto-buy-success-v1.md)
- [Crypto sell success v1](/api-reference/webhooks/crypto-sell-success-v1.md)
