> For the complete documentation index, see [llms.txt](https://ivankhrenkov.gitbook.io/bware_labs_russian/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ivankhrenkov.gitbook.io/bware_labs_russian/the-basics/binance-smart-chain-api/rpc/metod-eth_gasprice.md).

# Метод eth\_gasPrice

Возвращает текущую цену на газ в вэй.

## **Параметры**

нет

### **Возврат**

`QUANTITY` - целое число текущей цены на газ в вэй.

### Пример

```
// Request
curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "gasPrice","params": []}' https://bsc-api.bwarelabs.com/<your-endpoint-id>

// Response
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": "0x2540be400"

```
