> 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.callee_names.md).

# Instruction.callee\_names()

`callee_names() → List[str]`

For example, for the instruction:

```solidity
require(!_exists(tokenId), "ERC721: token already minted");
```

The functions will return `['_exists', 'require']`

## Query Example

```python
from glider import *


def query():
  # Fetch an instruction
  instruction = Instructions().with_callee_name('require').exec(1,30)
  
  # Print the list of function names called from the instruction
  print(instruction[0].callee_names()) 
  return instruction
```

## Example Output

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