> 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()

Returns the function's 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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FF7OgBEl6b93Bj7JmtraC%2Fimage.png?alt=media&amp;token=22c12acc-2d47-4216-9df2-6128fa73af25" alt=""><figcaption></figcaption></figure>
