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

# ExternalPoint.get\_variable()

Abstract method that returns object of variable

`get_variable() →` [`Variable`](/glider-ide/api/variables/variable.md)

## Query Example

```python
from glider import *


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

    arguments = functions[0].arguments()
    print(arguments.list()[0].get_variable())
    print(arguments.list()[0].source_code())

    return functions
```

## Output Example

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FVQEAMKQxgjR9BFl59HPp%2Fimage.png?alt=media&amp;token=de7f58ca-af8b-40c5-9360-d0c9c60ba1c7" alt=""><figcaption></figcaption></figure>
