🇬🇧
Yativo Documentation
Spanish
English
English
  • Yativo
  • Introduction to Yativo
    • Financial Infrastructure
    • About Us
  • Dashboard
  • Business Plans
  • Getting Started with Yativo API
  • Yativo API Glossary
  • API reference
    • Misc.
      • Countries
      • States
      • City
  • Security and Authentication
    • Security
    • Authentication
    • Idempotency in API Requests
  • Environment
    • Environments
  • Notifications
    • Webhook
  • Compliance
    • Verification
      • KYC
      • KYB
      • KYC/KYB Update
      • KYC Status
      • Global Business Search
    • Supported Jurisdiction
    • Supported Countries, Currencies and Payment Method
  • User Management
    • Customer
      • Get Customers
      • Retrieve customer
      • Add Customer
  • Payments
    • Currencies
    • Crypto Wallets
      • Generate Wallet Address
      • Fetch Wallet Address
      • Crypto Deposit History
      • Single crypto deposit history
    • Payout
      • Payout
      • Get Payouts
      • Get Payout
      • Beneficiaries
        • Get Beneficiaries
        • Add Beneficiary Payment Details
        • Update Beneficiary
        • Archive Beneficiary
        • Add Beneficiary
    • Payin
    • Virtual Cards
      • Supported Currency, Country
      • Create card
      • Fetch card
      • Top up card
      • Get Transactions
      • Freeze and Unfreeze Card
    • Virtual Accounts
      • Create VIrtual Accounts
        • USD Virtual Account
        • Mexico Virtual Account
        • Brazil PIX QR
      • Virtual Account Management
      • Transaction History
  • Foreign Exchange
    • Exchange Rate
      • Request Quote
  • Transactions
    • Transaction Summary
    • Get Single Transaction
  • Crypto System
    • Yativo Crypto Platform API
Powered by GitBook
On this page
  1. Payments
  2. Crypto Wallets

Single crypto deposit history

Endpoint: /crypto/deposit-history/:id

Description

The /crypto/deposit-history/:id endpoint allows businesses to retrieve detailed information about a specific cryptocurrency deposit transaction. This endpoint is useful for viewing the status, amount, and other details of an individual deposit.

Request Method

  • GET /crypto/deposit-history/:id

Path Parameter

  • id: The unique identifier of the deposit transaction that you want to retrieve.

Response Fields

  • transactionId: The unique identifier of the deposit transaction.

  • amount: The amount of cryptocurrency deposited.

  • currency: The type of cryptocurrency (e.g., BTC, ETH).

  • status: The current status of the deposit (pending, completed, failed).

  • walletAddress: The cryptocurrency wallet address to which the deposit was made.

  • transactionHash: The blockchain transaction hash associated with the deposit.

  • createdAt: The timestamp when the deposit transaction was initiated.

  • updatedAt: The timestamp of the last update to the transaction's status.

  • confirmations: The number of blockchain confirmations the deposit has received.

  • network: The blockchain network on which the transaction was conducted (e.g., Bitcoin, Ethereum).

PreviousCrypto Deposit HistoryNextPayout

Last updated 2 months ago

Deposit History

get
Authorizations
Responses
200
OK
application/json
Responseall of
and
anyOptionalExample: {"status":"success","status_code":200,"message":"Request successful","data":{"id":30,"user_id":1,"currency":"USDT.BEP20","amount":"1.00000000","address":7.69944558240412e+47,"transaction_id":1.7207686262023195e+78,"status":"success","created_at":"2024-08-28T13:45:51.000000Z","customer":null}}
get
GET /api/v1/crypto/deposit-history/333a25d6-c273-4b8f-8870-a79deaaaa324 HTTP/1.1
Host: smtp.yativo.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "status": "success",
  "status_code": 200,
  "message": "Request successful",
  "data": {
    "id": 30,
    "user_id": 1,
    "currency": "USDT.BEP20",
    "amount": "1.00000000",
    "address": 7.69944558240412e+47,
    "transaction_id": 1.7207686262023195e+78,
    "status": "success",
    "created_at": "2024-08-28T13:45:51.000000Z",
    "customer": null
  }
}
  • Endpoint: /crypto/deposit-history/:id
  • GETDeposit History