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

# ArgumentPoints.with\_name()

`with_name(arg_name: str, sensitivity: bool = False) →` [`APIList`](/glider-ide/api/iterables/apilist.md)`[`[`ArgumentPoint`](/glider-ide/api/point/argumentpoint.md)`]`

## Query Example

```python
from glider import *


def query():
    functions = (
        Functions()
        .with_name("transfer")
        .exec(1)
    )

    arguments = functions[0].arguments()

    print(arguments.with_name("_amount").source_code())

    return functions
```

## Output Example

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