> 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/variables/argumentvariable/argumentvariable.data.md).

# ArgumentVariable.data

## Query Example

```python
from glider import *


def query():
  functions = (
    Functions()
    .exec(1, 50)
  )

  for func in functions:
    args = func.arguments()
    print(args.list()[0].get_variable().data)
    
  return functions
```

## Example Output

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

### Detailed Output

```json5
{
    'name': 'target',
    'canonical_name': 'Address.functionCallWithValue(address,bytes,uint256,string).target',
    'type': {
        'type': 'elementary',
        'name': 'address'
     }, 
     'memory_type': 'memory'
}
```
