🚀 New Feature: Bulk Payouts! Send funds to multiple beneficiaries in a single request. Check the guide
JavaScript
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}}; fetch('https://sandboxapi.me-cash.com/v1/bulk/quote', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
200
Example
{ "message": "bulk quotes fetched successfully", "status": "success", "data": { "quotes": [ { "quoteId": "fa01c1ad-6c0f-4074-8221-ffc8fdaa16db", "sourceAmount": 100, "targetAmount": 100, "rate": 1, "fee": 5, "sourceCurrency": "NGN", "targetCurrency": "NGN", "expiresInSeconds": 600 } ] } }
Retrieves one or more previously created bulk quotes by their IDs. Pass multiple quoteIds query parameters to fetch several quotes at once.
quoteIds
One or more quote IDs to retrieve. Repeat the parameter for multiple IDs.
Bulk quotes fetched successfully.
"bulk quotes fetched successfully"
"success"
Show child attributes
Was this page helpful?