AppController_getGasPrice
GET/v2/gas-price
AppController_getGasPrice
Request​
Query Parameters
chainId stringrequired
ID of chain, e.g Ethereum Mainnet = 1
Example: 1
Responses​
- 200
Current gas prices for a chain
- application/json
- Schema
- Example (from schema)
Schema
successbooleanrequired
result
object
required
chainIdnumber
txTypenumber
fast
object
gasPricenumber
estimatedSecondsnumber
normal
object
gasPricenumber
estimatedSecondsnumber
slow
object
gasPricenumber
estimatedSecondsnumber
{
"success": true,
"result": {
"chainId": 0,
"txType": 0,
"fast": {
"gasPrice": 0,
"estimatedSeconds": 0
},
"normal": {
"gasPrice": 0,
"estimatedSeconds": 0
},
"slow": {
"gasPrice": 0,
"estimatedSeconds": 0
}
}
}