curl --location --request POST '/api/v1/replenish/fee/quote/batch' \
--header 'x-api-token: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"callbackURL": "https://api.partner.com/callbacks/replenish-batch",
"transactions": [
{
"originalTxnHash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"replenishAmount": 30.75
}
]
}'{
"success": true,
"message": "Request sent to producer successfully.",
"data": {
"batchQuoteId": "BATCH_QUOTE_123456789",
"callbackURL": "https://api.partner.com/callbacks/replenish-batch-status",
"transactions": [
{
"originalTxnHash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"replenishAmount": 30.75
}
]
}
}