> ## 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_getGasPrice

> Get gas price

Example values you use to demo the API:

```json theme={null}
{
  "id": 3,
  "method": "skandha_getGasPrice"
}
```

Example response:

```json theme={null}
{
  "id": 3,
  "result": {
    "maxPriorityFeePerGas": "0xaac11ce38",
    "maxFeePerGas": "0x1663d57dc4"
  }
}
```


## OpenAPI

````yaml skandhagetgasprice 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_getGasPrice
      description: Get gas price
      operationId: skandha_getGasPrice
      requestBody:
        description: Get gas price
        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

````