Get BSC Bundle Price

REQUEST

Method: bsc_get_bundle_price

Returns BSC bundle price that corresponds to the subscription tier.

Parameters: None

Examples (Cloud API)

curl https://mev.api.blxrbdn.com \
    -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: <YOUR-AUTHORIZATION-HEADER>" \
    -d '{
         "id": "1", 
         "method": "bsc_get_bundle_price", 
         "params": null
        }'

RESPONSE

Result FieldDescription

1

Price in BNB for a bundle with 1 transaction.

2

Price in BNB for a bundle with 2 transactions.

...

...

n

Price in BNB for a bundle with n transactions.

...

...

higher

Price in BNB for a bundle with more transactions.

{
    "id": "1",
    "result": {
        "1": 0.0004,
        "2": 0.0004,
        "3": 0.004,
        "4": 0.008,
        "5": 0.008,
        "6": 0.008,
        "7": 0.012,
        "8": 0.012,
        "9": 0.012,
        "higher": 0.012
    },
    "jsonrpc": "2.0"
}

Note that the response content may vary for different subscription tiers. Above is an example for introductory tier.

Last updated