qan_feeHistory
https://rpc-testnet.qanplatform.com/feeHistory/
API details
Returns the collection of historical gas information.
Request body for "qan_feeHistory"
The number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. It will return less than the requested range if not all blocks are available
The highest number block of the requested range in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions.
A list of percentile values with a monotonic increase in value. The transactions will be ranked by effective tip per gas for each block in the requested range, and the corresponding effective tip for the percentile will be calculated while taking gas consumption into consideration
HTTP response status codes for "qan_feeHistory"
Status Code | Description |
---|---|
200 | OK |
400 | Bad Request |
404 | Not Found |
422 | Unprocessable Entity |
500 | Internal Server Error |
Code samples for "qan_feeHistory"
Request examples
https://rpc-testnet.qanplatform.com/feeHistory/
curl --request POST \
--url https://rpc-testnet.qanplatform.com/feeHistory/ \
--header 'Accept: application/json, application/problem+json' \
--header 'Content-Type: application/json' \
--data '
{
"BlockCount": "0",
"NewestBlock": "string",
"RewardPercentiles": []
}
'
const options = {
method: 'POST',
headers: {
Accept: 'application/json, application/problem+json',
'Content-Type': 'application/json'
},
body: JSON.stringify({BlockCount: '0', NewestBlock: 'string', RewardPercentiles: []})
};
fetch('https://rpc-testnet.qanplatform.com/feeHistory/', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://rpc-testnet.qanplatform.com/feeHistory/"
payload := strings.NewReader("{\"BlockCount\":\"0\",\"NewestBlock\":\"string\",\"RewardPercentiles\":[]}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Accept", "application/json, application/problem+json")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
import requests
url = "https://rpc-testnet.qanplatform.com/feeHistory/"
payload = {
"BlockCount": "0",
"NewestBlock": "string",
"RewardPercentiles": []
}
headers = {
"Accept": "application/json, application/problem+json",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)
HttpResponse<String> response = Unirest.post("https://rpc-testnet.qanplatform.com/feeHistory/")
.header("Accept", "application/json, application/problem+json")
.header("Content-Type", "application/json")
.body("{\"BlockCount\":\"0\",\"NewestBlock\":\"string\",\"RewardPercentiles\":[]}")
.asString();
Responses
Description: OK
Content type: application/json
Example
{
"$schema": "https://rpc-testnet.qanplatform.com/schemas/Output_feeHistory.json",
"BaseFeePerGas": [],
"GasUsedRatio": [],
"OldestBlock": "string",
"Reward": []
}
Body
A URL to the JSON Schema for this object.
Example:https://rpc-testnet.qanplatform.com/schemas/Output_feeHistory.json
An array of block base fees per gas. This includes the next block after the newest of the returned range, because this value can be derived from the newest block. Zeroes are returned for pre-EIP-1559 blocks
An array of block gas used ratios. These are calculated as the ratio of gasUsed and gasLimit
The lowest number block of the returned range encoded in decimal format
An array of effective priority fees per gas data points from a single block. All zeroes are returned if the block is empty
Description: Bad Request
Content type: application/problem+json
Example
{
"$schema": "https://rpc-testnet.qanplatform.com/schemas/ErrorModel.json",
"detail": "Property foo is required but is missing.",
"errors": [],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}
Body
A URL to the JSON Schema for this object.
Example:https://rpc-testnet.qanplatform.com/schemas/ErrorModel.json
A human-readable explanation specific to this occurrence of the problem.
Example:Property foo is required but is missing.
Optional list of individual error details
Where the error occurred, e.g. 'body.items3.tags' or 'path.thing-id'
Error message text
The value at the given location
A URI reference that identifies the specific occurrence of the problem.
Example:https://example.com/error-log/abc123
HTTP status code
Example:400
A short, human-readable summary of the problem type. This value should not change between occurrences of the error.
Example:Bad Request
A URI reference to human-readable documentation for the error.
Example:https://example.com/errors/example
Description: Not Found
Content type: application/problem+json
Example
{
"$schema": "https://rpc-testnet.qanplatform.com/schemas/ErrorModel.json",
"detail": "Property foo is required but is missing.",
"errors": [],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}
Body
A URL to the JSON Schema for this object.
Example:https://rpc-testnet.qanplatform.com/schemas/ErrorModel.json
A human-readable explanation specific to this occurrence of the problem.
Example:Property foo is required but is missing.
Optional list of individual error details
Where the error occurred, e.g. 'body.items3.tags' or 'path.thing-id'
Error message text
The value at the given location
A URI reference that identifies the specific occurrence of the problem.
Example:https://example.com/error-log/abc123
HTTP status code
Example:400
A short, human-readable summary of the problem type. This value should not change between occurrences of the error.
Example:Bad Request
A URI reference to human-readable documentation for the error.
Example:https://example.com/errors/example
Description: Unprocessable Entity
Content type: application/problem+json
Example
{
"$schema": "https://rpc-testnet.qanplatform.com/schemas/ErrorModel.json",
"detail": "Property foo is required but is missing.",
"errors": [],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}
Body
A URL to the JSON Schema for this object.
Example:https://rpc-testnet.qanplatform.com/schemas/ErrorModel.json
A human-readable explanation specific to this occurrence of the problem.
Example:Property foo is required but is missing.
Optional list of individual error details
Where the error occurred, e.g. 'body.items3.tags' or 'path.thing-id'
Error message text
The value at the given location
A URI reference that identifies the specific occurrence of the problem.
Example:https://example.com/error-log/abc123
HTTP status code
Example:400
A short, human-readable summary of the problem type. This value should not change between occurrences of the error.
Example:Bad Request
A URI reference to human-readable documentation for the error.
Example:https://example.com/errors/example
Description: Internal Server Error
Content type: application/problem+json
Example
{
"$schema": "https://rpc-testnet.qanplatform.com/schemas/ErrorModel.json",
"detail": "Property foo is required but is missing.",
"errors": [],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}
Body
A URL to the JSON Schema for this object.
Example:https://rpc-testnet.qanplatform.com/schemas/ErrorModel.json
A human-readable explanation specific to this occurrence of the problem.
Example:Property foo is required but is missing.
Optional list of individual error details
Where the error occurred, e.g. 'body.items3.tags' or 'path.thing-id'
Error message text
The value at the given location
A URI reference that identifies the specific occurrence of the problem.
Example:https://example.com/error-log/abc123
HTTP status code
Example:400
A short, human-readable summary of the problem type. This value should not change between occurrences of the error.
Example:Bad Request
A URI reference to human-readable documentation for the error.
Example:https://example.com/errors/example