Skip to main content
GET
/
v1
/
crypto-gateway
/
pay
/
{paymentId}
/
status
curl 'https://crypto-api.yativo.com/api/v1/crypto-gateway/pay/pay_a1b2c3d4e5f6/status'
{
  "success": true,
  "data": {
    "payment_id": "pay_a1b2c3d4e5f6",
    "title": "Invoice #1234",
    "requested_amount": 49.99,
    "status": "paid",
    "asset_code": "USDC_SOL",
    "network": "solana",
    "deposit_address": "7xKXtg...",
    "settled_amount": 49.99,
    "transaction_hash": "5K3pXa...",
    "late_payment": false,
    "payment_window_expires_at": "2026-04-18T13:00:00Z",
    "monitoring_ends_at": "2026-04-18T13:20:00Z",
    "confirmed_at": "2026-04-18T12:08:00Z"
  }
}

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.

paymentId
string
required
The payment ID returned when the payment intent was created.
Possible status values
StatusDescription
awaiting_paymentWaiting for the customer to send funds
monitoring_late_windowPrimary window closed; still accepting payment in grace period
paidConfirmed on-chain within the primary window
paid_lateConfirmed on-chain during the late monitoring window
expiredMonitoring window closed with no payment detected
cancelledCancelled by the merchant
curl 'https://crypto-api.yativo.com/api/v1/crypto-gateway/pay/pay_a1b2c3d4e5f6/status'
{
  "success": true,
  "data": {
    "payment_id": "pay_a1b2c3d4e5f6",
    "title": "Invoice #1234",
    "requested_amount": 49.99,
    "status": "paid",
    "asset_code": "USDC_SOL",
    "network": "solana",
    "deposit_address": "7xKXtg...",
    "settled_amount": 49.99,
    "transaction_hash": "5K3pXa...",
    "late_payment": false,
    "payment_window_expires_at": "2026-04-18T13:00:00Z",
    "monitoring_ends_at": "2026-04-18T13:20:00Z",
    "confirmed_at": "2026-04-18T12:08:00Z"
  }
}