Skip to main content
GET
/
v1
/
bulk
/
quote
Fetch Bulk Quotes
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));
{
  "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
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

quoteIds
string<uuid>[]
required

One or more quote IDs to retrieve. Repeat the parameter for multiple IDs.

Response

Bulk quotes fetched successfully.

message
string
Example:

"bulk quotes fetched successfully"

status
string
Example:

"success"

data
object