curl --location --request GET '/api/v1/transactions/?status&fromCurrency&toCurrency&limit&offset&startDate&endDate' \
--header 'Authorization: <api-key>'{
"success": true,
"data": {
"transactions": [
{
"id": "string",
"reference": "string",
"fromCurrency": "string",
"fromAmount": 0,
"toCurrency": "string",
"toAmount": 0,
"status": "string",
"createdAt": "string"
}
],
"total": 0,
"limit": 0,
"offset": 0
}
}