Get Off-Ramp Status

Check the current status of an off-ramp transaction.

Retrieves the current status and details of an off-ramp transaction by its reference.

Endpoint

GET /v1/offramp/status/:reference

Authentication

Header
Value

x-api-key

Your API key

Path parameters

Parameter
Type
Description

reference

string

Your unique transaction reference

Example request

curl -X GET https://ramp-api.ivorypay.io/api/v1/offramp/status/660e8400-e29b-41d4-a716-446655440001 \
  -H "x-api-key: your_api_key"

Example response

{
  "statusCode": 200,
  "success": true,
  "message": "Query successful",
  "data": {
    "reference": "660e8400-e29b-41d4-a716-446655440001",
    "status": "SUCCESS",
    "email": "chidi@example.com",
    "token": "USDT",
    "blockchain": "BSC_MAINNET",
    "fiatCurrency": "NGN",
    "fiatAmount": 100000,
    "cryptoAmount": 62.5,
    "accountNumber": "0123456789",
    "bankCode": "058",
    "transactionHash": "0xdef456...",
    "createdAt": "2026-03-26T12:00:00.000Z"
  }
}

Transaction statuses

Status
Description

INITIATED

Transaction created, awaiting crypto deposit

PENDING

Session active, waiting for crypto

CRYPTO_PAYMENT_RECEIVED

Crypto deposit detected on-chain

FIAT_PAYOUT_PROCESSING

Bank transfer in progress

SUCCESS

Fiat delivered to bank account

FAILED

Transaction failed

DECLINED

Transaction was declined

EXPIRED

Session expired before crypto was received

Last updated