> 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/arguments/arguments.with_name.md).

# Arguments.with\_name()

`with_name(arg_name: str, sensitivity: bool = False) -> List[`[`Argument`](/glider-ide/api/argument.md)`]`

## Query Example

```python
from glider import *
 

def query():
  functions = Functions().exec(1000)

  for f in functions:
    # Find arguments named "account"
    for arg in f.arguments().with_name("account"):
      print(arg.get_variable().data)

  return []
```

## Output Example&#x20;

Example output of an Argument named "account":

```json
{
    'name': 'account', 
    'canonical_name': 'Datagold.queryAccountInfo(address,string).account', 
    'type': {
        'type': 'elementary', 
        'name': 'address'
    }, 
    'memory_type': 'memory'
}
```
