> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/value/call/call.get_call_gas.md).

# Call.get\_call\_gas()

Returns Value representing the gas-parameter used in the external calls.

`get_call_gas() ->` [`APIList`](/glider-ide/api/iterables/apilist.md)`[Union[`[`Value`](/glider-ide/api/value/value.md)`,` [`NoneObject`](/glider-ide/api/internal/noneobject.md)`]]`

## **Query Example**

```python
from glider import *

def query():
    instructions = (
        Instructions()
        .low_level_external_calls()
        .exec(1000)
        .filter(lambda instruction : instruction.get_parent().get_contract().name == "PoolEth")
    )

    for ins in instructions:
        callee_values = ins.get_value().get_callee_values()
        print(callee_values.get_call_gas())
        print(callee_values.get_call_gas().expression)

    return instructions
```

## **Example Output**

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2F6gSS7hpKfHwYQXjHv8CF%2FScreenshot%202025-09-09%20at%201.01.24%E2%80%AFPM.png?alt=media&amp;token=9de2b872-3e18-4fc4-a2d1-dfa8bd31abbf" alt=""><figcaption></figcaption></figure>
