curl --location --request POST '/api/v1/transactions/reserve/quote' \
--header 'Content-Type: application/json' \
--data-raw '{
"startTimestamp": "2024-12-25T00:00:00.000Z",
"endTimestamp": "2024-12-30T00:00:00.000Z",
"amount": "1000.50"
}'{
"success": true,
"message": "Reserve frame created successfully",
"data": {
"reserverId": "rf_abc123def456",
"amount": 1000.5,
"startTimestamp": "2024-12-25T00:00:00.000Z",
"endTimestamp": "2024-12-30T00:00:00.000Z",
"feeAmount": 25.5,
"depositWalletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"chainId": 1,
"tokenAddress": "0xA0b86a33E6441b8c4C8C0C4e8c0C4e8c0C4e8c0C4"
}
}