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

Returns the arguments of the call, or empty array if the call has no arguments.

`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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FVTboMyxvd0RCrc1ozb73%2Fimage.png?alt=media&amp;token=e6cd38d6-6942-4aa5-b261-b5e44a587ee3" alt=""><figcaption></figcaption></figure>
