Skip to main content
GET
/
off-ramp
/
intents
List Off-ramp Intents
curl --request GET \
  --url https://api.coinvoyage.io/v3/off-ramp/intents \
  --header 'Authorization: <api-key>' \
  --header 'Authorization-Signature: <authorization-signature>'
{
  "data": [
    {
      "data": {
        "payment_rail": "ach",
        "source": {
          "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "amount": {
            "raw": "100000000",
            "ui": "100.0",
            "value_usd": 100
          },
          "chain_id": 8453,
          "decimals": 6,
          "id": "8453-0xabc123...",
          "name": "USD Coin",
          "ticker": "USDC"
        }
      },
      "id": "withdrawal_123",
      "organization_id": "org_123",
      "source_transaction_hash": "0xabc123...",
      "status": "PENDING",
      "type": "OFF_RAMP"
    }
  ]
}

Authorizations

Authorization
string
header
required

HMAC-SHA256 signature. See the Authorization-Signature header parameter on signed operations.

Headers

Authorization-Signature
string
required

HMAC-SHA256 signature header: 'APIKey=<api_key>,signature=,timestamp=<unix_timestamp>'. The signature is computed over METHOD + path (with the /v3 prefix stripped) + timestamp.

Response

Off-ramp intents

data
object[]