Skip to main content
GET
/
v1
/
conversions
/
{conversion_id}
curl
curl -X GET "https://api.services.payward.com/v1/conversions/cvn_01J0M7C0Z9F8YX3GQH8E" \
  -H "API-Key: $PWS_API_KEY" \
  -H "API-Nonce: $PWS_API_NONCE" \
  -H "API-Sign: $PWS_API_SIGN"
{
  "data": {
    "id": "conv_USDT2SOL_lock",
    "status": "completed",
    "from": {
      "account": "W4BE9868GY65TB6523",
      "asset": {
        "symbol": "USDT",
        "name": "Tether",
        "type": "stablecoin",
        "amount": "100"
      },
      "source": {
        "type": "external_wallet",
        "via": "tron",
        "id": "da_tron_eph_Yw3",
        "address": "TQ8b91234567890123456789012345678901234567"
      }
    },
    "to": {
      "asset": {
        "symbol": "SOL",
        "name": "Solana",
        "type": "crypto",
        "amount": "0.6234"
      },
      "destination": {
        "type": "external_wallet",
        "wallet_id": "wl_client_sol",
        "via": "solana",
        "address": "9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin"
      }
    },
    "fees": {
      "trade": {
        "symbol": "USDT",
        "name": "Tether",
        "type": "stablecoin",
        "amount": "0.10"
      }
    },
    "swap_quote": {
      "id": "Q-USDT2SOL-7",
      "status": "executed",
      "rate": {
        "base": {
          "symbol": "USDT",
          "type": "stablecoin"
        },
        "quote": {
          "symbol": "SOL",
          "type": "crypto"
        },
        "price": "0.00624"
      }
    },
    "chain_references": {
      "deposit_txid": "tron_tx_abc...",
      "withdraw_txid": "5r...solana_tx"
    },
    "created_at": "2026-04-24T16:30:00Z",
    "updated_at": "2026-04-24T16:32:11Z"
  }
}

Authorizations

api-key
string
header
required
api-sign
string
header
required
api-nonce
string
header
required
api-otp
string
header
required

Path Parameters

conversion_id
string
required

ID of the conversion to retrieve.

Required string length: 1 - 64

Response

Successful response

data
object

A conversion resource.

Lifecycle for push-sourced conversions: pending_depositconvertingsettlingcompleted. Balance-sourced conversions skip pending_deposit. Terminal failures populate failure_reason; expired push-sourced conversions land in expired.