> 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/argumentpoint/argumentpoint.get_variable.md).

# ArgumentPoint.get\_variable()

`get_variable() →` [`ArgumentVariable`](/glider-ide/api/variables/argumentvariable.md)

## Query Example

```python
from glider import *

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

    arguments = functions[0].arguments()

    print(arguments.with_type("address")[0].get_variable())
    print(arguments.with_type("address")[0].get_variable().source_code())


    return functions
```

## Output Example

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