Get Sell Status
Check the status of a Sell transaction.
Endpoint
GET /v1/sell/statusAuthentication
Header
Value
Query parameters
Parameter
Type
Required
Description
Example request
curl -X GET "https://ramp-api.ivorypay.io/api/v1/sell/status?reference=880e8400-e29b-41d4-a716-446655440003" \
-H "x-api-key: your_api_key"const response = await fetch(
"https://ramp-api.ivorypay.io/api/v1/sell/status?reference=880e8400-e29b-41d4-a716-446655440003",
{
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/sell/status",
headers={
"x-api-key": "your_api_key",
},
params={
"reference": "880e8400-e29b-41d4-a716-446655440003",
},
)
print(response.json())Example response
{
"statusCode": 200,
"success": true,
"message": "Query successful",
"data": {
"reference": "880e8400-e29b-41d4-a716-446655440003",
"status": "SUCCESS",
"fiatAmount": 75000,
"currency": "NGN",
"accountNumber": "0123456789",
"accountName": "Tunde Bakare",
"bankName": "GTBank",
"createdAt": "2026-03-26T12:00:00.000Z"
}
}Transaction statuses
Status
Description
Last updated