> 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/functions/functions.with_modifier_signature.md).

# Functions.with\_modifier\_signature()

`with_modifier_signature(`*`signature: str`*`) →` [`Functions`](/glider-ide/api/functions.md)

Adds a filter to get functions that have a modifier with the given signature.

## Example

```python
from glider import *

def query():
  
  # Fetch a list of functions with specific modifier signature
  functions = Functions().with_modifier_signature('onlyOwner(address)').exec(2)

  return functions
```

## Output

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