Skip to main content
GET
/
v1
/
card-issuer
/
transfers
/
:transferId
curl -X GET 'https://crypto-api.yativo.com/api/v1/card-issuer/transfers/txn_01HX9KZMB3F7VNQP8R2WDGT4E5' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "transfer_id": "txn_01HX9KZMB3F7VNQP8R2WDGT4E5",
    "status": "hop1_processing",
    "source": {
      "chain": "SOL",
      "amount": 201.80
    },
    "destination": {
      "token": "EUR",
      "amount": null
    },
    "fees": {
      "platform_fee": 0.50,
      "total_fee": 0.90,
      "fee_currency": "USDC"
    },
    "customer_id": "6627f3a2c5d4e100123def",
    "initiated_at": "2026-05-06T14:30:00Z",
    "completed_at": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.yativo.com/llms.txt

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

Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
transferId
string
required
The transfer_id returned by Fund Customer Card.
curl -X GET 'https://crypto-api.yativo.com/api/v1/card-issuer/transfers/txn_01HX9KZMB3F7VNQP8R2WDGT4E5' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "transfer_id": "txn_01HX9KZMB3F7VNQP8R2WDGT4E5",
    "status": "hop1_processing",
    "source": {
      "chain": "SOL",
      "amount": 201.80
    },
    "destination": {
      "token": "EUR",
      "amount": null
    },
    "fees": {
      "platform_fee": 0.50,
      "total_fee": 0.90,
      "fee_currency": "USDC"
    },
    "customer_id": "6627f3a2c5d4e100123def",
    "initiated_at": "2026-05-06T14:30:00Z",
    "completed_at": null
  }
}

Status reference

StatusMeaning
pendingTransfer queued, not yet started
hop1_processingFirst transfer leg in progress
hop1_completeFirst leg done, second leg starting
hop2_processingFinal delivery to customer card wallet in progress
completedFunds delivered — customer card is credited
failedTransfer failed
refundedFunds returned to your master wallet
Poll this endpoint every 10–15 seconds until status is completed or failed. Transfers typically complete in 2–5 minutes under normal network conditions.