> 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()

`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="/files/ZMSyr2ZiRY7m7aCxty6P" alt=""><figcaption></figcaption></figure>
