> 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/instruction/instruction.get_callees.md).

# Instruction.get\_callees()

Returns metadata on all calls in the Instruction.

`get_callees() → Dict`

## Query Example

```python
from glider import *

def query():
    instructions = Instructions().exec(3,182)
    results = []
    
    for inst in instructions: 
        print(inst.get_callees())

    return instructions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FhhBp6DqprwBlYQrfIvUn%2Fimage.png?alt=media&amp;token=3bcfc701-c9e2-4469-b498-bece8d32115d" alt=""><figcaption></figcaption></figure>
