> 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/callable/callable.calls_instructions.md).

# Callable.calls\_instructions()

`calls_instructions() →` [`Instructions`](/glider-ide/api/instructions.md)

The function returns [Instructions](/glider-ide/api/instructions.md) object for all instructions that have any type of call inside it, whether it is an external, internal, library or other type of call.

## Example

```python
from glider import *
def query():
  functions = Functions().exec(100)

  calls_instructions = []
  for function in functions:
    # List all call instructions in the given functions
    for instruction in function.calls_instructions().exec():
      calls_instructions.append(instruction)

  return calls_instructions
```

## Example output

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