Account
Bank
Transfer
Discount
KYC
Supported
Ramp
Onramp and Offramp
Initiates onramp and offramp requests.
POST
/
ramp
Copy
curl --request POST \
--url https://staging-api.getpartna.com/v4/ramp \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"accountName": "",
"accountNumber": "",
"bankCode": "",
"cancelPendingRampRequest": false,
"cryptoAddress": "",
"expireAction": "",
"fromAmount": 0,
"fromCurrency": "",
"fromNetwork": "",
"rampExpTime": 0,
"rampReference": "",
"rateKey": "",
"toAmount": 0,
"toCurrency": "",
"toNetwork": "",
"type": ""
}'
Copy
{
"data": {
"accountName": "JANE DOE",
"accountNumber": "9003001002",
"bankName": "Paystack-Titan",
"currentRate": 0.000597221725,
"expiryDate": 1750165040,
"fromAmount": 1000,
"fromCurrency": "NGN",
"fromNetwork": "naira",
"rampReference": "f32c3925063447a54905d31305a14da5",
"toAmount": 0.597221724537,
"toCurrency": "USDT",
"toNetwork": "tron"
},
"message": "request completed"
}
Body
application/json
Response
200
application/json
post ramp ok
The response is of type object
.
Copy
curl --request POST \
--url https://staging-api.getpartna.com/v4/ramp \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"accountName": "",
"accountNumber": "",
"bankCode": "",
"cancelPendingRampRequest": false,
"cryptoAddress": "",
"expireAction": "",
"fromAmount": 0,
"fromCurrency": "",
"fromNetwork": "",
"rampExpTime": 0,
"rampReference": "",
"rateKey": "",
"toAmount": 0,
"toCurrency": "",
"toNetwork": "",
"type": ""
}'
Copy
{
"data": {
"accountName": "JANE DOE",
"accountNumber": "9003001002",
"bankName": "Paystack-Titan",
"currentRate": 0.000597221725,
"expiryDate": 1750165040,
"fromAmount": 1000,
"fromCurrency": "NGN",
"fromNetwork": "naira",
"rampReference": "f32c3925063447a54905d31305a14da5",
"toAmount": 0.597221724537,
"toCurrency": "USDT",
"toNetwork": "tron"
},
"message": "request completed"
}
Assistant
Responses are generated using AI and may contain mistakes.