> 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_address.md).

# ExternalPoint.get\_address()

Retrieves the address of the external point.

## Query Example

```python
from glider import *


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

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

    return functions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FsEc6VWtgXmmbDxn5DCaH%2FScreenshot%202025-09-16%20at%202.33.19%E2%80%AFPM.png?alt=media&amp;token=be8ed901-589b-4e90-8f76-7f741ef14a89" alt=""><figcaption></figcaption></figure>
