> 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_args.md).

# Call.get\_args()

`get_args() ->` [`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()
        .exec(100)
        .filter(lambda x: x.is_call())
    )

    for ins in instructions:
        call = ins.get_value()
        if isinstance(call, Call):
            print(call.get_args().expression)

    return instructions
```

## Output&#x20;

<figure><img src="/files/ina9Z6BRN7HiRP7QqMmo" alt=""><figcaption></figcaption></figure>
