> ## Documentation Index
> Fetch the complete documentation index at: https://etherspot.fyi/llms.txt
> Use this file to discover all available pages before exploring further.

# skandha_feeHistory

> Get bundler fee history

Example values you use to demo the API:

```json theme={null}
{
  "id": 3,
  "method": "skandha_feeHistory",
  "params": [
    "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", "10", "latest"
  ]
}
```

Example response:

```json theme={null}
{
  "id": 3,
  "result": {
    "actualGasPrice": [
      "0xfbdf3621f",
      "0xfbdf3621f",
      "0xfbdf3621f"
    ],
    "maxFeePerGas": [
      "0x118b2ce6d2",
      "0x115bdb995e",
      "0x118b2ce6d2"
    ],
    "maxPriorityFeePerGas": [
      "0x861c46800",
      "0x861c46800",
      "0x861c46800"
    ]
  }
}
```


## OpenAPI

````yaml skandhagetfeehistory post /
openapi: 3.0.3
info:
  title: Etherspot test
  version: 1.0.1
servers:
  - url: https://rpc.etherspot.io/v1/137
security: []
tags:
  - name: skandha
    description: Skandha API call
    externalDocs:
      description: Find out more about Skandha
      url: https://etherspot.fyi/skandha/intro
externalDocs:
  description: Find out more about Skandha
  url: https://etherspot.fyi/skandha/intro
paths:
  /:
    post:
      tags:
        - skandha
      summary: skandha_feeHistory
      description: Get bundler fee history
      operationId: skandha_feeHistory
      requestBody:
        description: Get bundler fee history
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/feehistory'
        required: true
      responses:
        '200':
          description: Successful operation
components:
  schemas:
    feehistory:
      type: object
      properties:
        id:
          type: integer
        method:
          type: string
        params:
          type: array
          items:
            type: string

````