Get Transaction by ID

Get a specific transaction by its ID.

Retrieves the full details of a specific transaction.

Endpoint

GET /v1/transactions/:id

Authentication

Header
Value

x-api-key

Your API key

Path parameters

Parameter
Type
Description

id

string

Transaction UUID

Example request

curl -X GET https://ramp-api.ivorypay.io/api/v1/transactions/txn-uuid-1 \
  -H "x-api-key: your_api_key"

Example response

{
  "statusCode": 200,
  "success": true,
  "message": "Query successful",
  "data": {
    "id": "txn-uuid-1",
    "reference": "550e8400-e29b-41d4-a716-446655440000",
    "status": "SUCCESS",
    "feature": "ON_RAMP",
    "token": "USDT",
    "fiatCurrency": "NGN",
    "fiatAmount": 50000,
    "cryptoAmount": 31.25,
    "network": "BSC_MAINNET",
    "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD68",
    "transactionHash": "0xabc123...",
    "email": "amina@example.com",
    "platformFee": 250,
    "businessFee": 0,
    "gasFee": 0.5,
    "context": "LIVE",
    "createdAt": "2026-03-26T12:00:00.000Z",
    "updatedAt": "2026-03-26T12:05:00.000Z"
  }
}

Last updated