> 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/function/function.properties.md).

# Function.properties()

`properties() →` [`APIList`](/glider-ide/api/iterables/apilist.md)`[`[`MethodProp`](/glider-ide/api/callables/methodprop.md)`]`

Returns the function's properties as an [APIList](/glider-ide/api/iterables/apilist.md) of [MethodProps](/glider-ide/api/callables/methodprop.md).

## Example

```python
from glider import *

def query():
  # Fetch a list of functions
  functions = Functions().exec(1)

  # Retrieve the properties of the first function
  properties = functions[0].properties()
  for prop in properties:
    print(prop)

  return functions
```

## Output

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