Get Off-Ramp Status
Check the current status of an off-ramp transaction.
Endpoint
GET /v1/offramp/status/:referenceAuthentication
Header
Value
Path parameters
Parameter
Type
Description
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"const response = await fetch(
"https://ramp-api.ivorypay.io/api/v1/offramp/status/660e8400-e29b-41d4-a716-446655440001",
{
method: "GET",
headers: {
"x-api-key": "your_api_key",
},
}
);
const data = await response.json();
console.log(data);import requests
response = requests.get(
"https://ramp-api.ivorypay.io/api/v1/offramp/status/660e8400-e29b-41d4-a716-446655440001",
headers={
"x-api-key": "your_api_key",
},
)
print(response.json())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
Last updated