1. Crypto Deposits
Partner API
  • Getting Started
    • Introduction
    • Authentication
    • Business Use Cases
  • API References
    • Partner Operations
      • Crypto Deposits
        • Get Crypto Deposit Details
          GET
      • Crypto Withdrawal
        • Get Crypto Withdrawal Details
      • Currency Exchange
        • Retrieve Rates
        • Retrieve Lock
        • Create and Finalize an Exchange
        • Get Exchange Details
      • Balances & History
        • Get Balances
        • Get Balance History
      • SEPA Transfers
        • Get SEPA Deposit Info
        • Get SEPA Deposit Contact List
        • Create a SEPA Transfer
        • Get SEPA Transfer Details
  • Integration
    • SDKs & Integration Guides
    • Transaction Processing
    • Error Handling
    • Rate Limiting
    • Webhooks
      • User & KYC Webhooks
        • User Balance Generation Webhook
        • KYC File Added Webhook
        • POA Verification Status Webhook
        • KYC Verification Status Webhook
        • Create Wallet Webhook
        • High Risk KYC Verification Webhook
      • Transfers & Payments Webhooks
        • Internal Transfer Webhook
        • IBAN Status Webhook
        • Partner SEPA Transfer Webhook
        • User SEPA Transfer Webhook
        • SEPA Deposit Webhook
        • Crypto Withdrawal Webhook
        • Crypto Deposit Webhook
        • Exchange Webhook
        • Card Transaction Webhook
        • Order Status Webhook
        • Payment Link Webhook
      • Card Webhooks
        • Card 3DS Code Webhook
        • Card Activation Code Webhook
  • Reference
    • Supported Countries
    • Supported Currencies
    • Fees
    • FAQ
    • Changelog
    • Support
  1. Crypto Deposits

Get Crypto Deposit Details

Testing Env
https://stage-api.fintegence.io
Testing Env
https://stage-api.fintegence.io
GET
/v1/crypto-deposit/details
Retrieves the comprehensive status and details of a specific cryptocurrency withdrawal.
Use this endpoint to track the lifecycle of a transaction, from initial risk checks to final blockchain confirmation.

Key Information#

Transaction Hash: The transactionHash is populated once the status reaches SENT or SUCCESSFUL. This is the blockchain proof of payment.
User Data: The user object is included for architectural consistency but remains null for Partner API responses.
Tracking: While webhooks are recommended for real-time updates, this endpoint is the definitive source of truth for reconciliation and manual status checks.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠401Access Denied
🟠404Transaction not found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://stage-api.fintegence.io/v1/crypto-deposit/details?externalId=undefined' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "externalId": "30e07f7a-1c05-4149-a2e2-3717da9d9490",
    "status": "successful",
    "amount": "1",
    "currency": "DOGE",
    "from": "0x5fa1f7c5205ee01030b73601bdec63f3e7e677fe",
    "fee": "0",
    "transactionHash": "0xcedfe0a8db658a000acefbbf5be27c7b0b91edd20caaa2657fdcfcf456446b77",
    "createdAt": "2026-09-10T10:50:01.517Z"
}
Previous
Crypto Deposits
Next
Crypto Withdrawal
Built with