Get On-Ramp Status
Check the current status of an on-ramp transaction.
Endpoint
GET /v1/onramp/status/:referenceAuthentication
Header
Value
Path parameters
Parameter
Type
Description
Example request
curl -X GET https://ramp-api.ivorypay.io/api/v1/onramp/status/550e8400-e29b-41d4-a716-446655440000 \
-H "x-api-key: your_api_key"const response = await fetch(
"https://ramp-api.ivorypay.io/api/v1/onramp/status/550e8400-e29b-41d4-a716-446655440000",
{
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/onramp/status/550e8400-e29b-41d4-a716-446655440000",
headers={
"x-api-key": "your_api_key",
},
)
print(response.json())Example response
{
"statusCode": 200,
"success": true,
"message": "Query successful",
"data": {
"reference": "550e8400-e29b-41d4-a716-446655440000",
"status": "SUCCESS",
"email": "amina@example.com",
"token": "USDT",
"fiatCurrency": "NGN",
"fiatAmount": 50000,
"cryptoAmount": 31.25,
"walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD68",
"blockchain": "BSC_MAINNET",
"transactionHash": "0xabc123...",
"createdAt": "2026-03-26T12:00:00.000Z"
}
}Transaction statuses
Status
Description
Last updated