> 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/value/call/call.get_call_type.md).

# Call.get\_call\_type()

`get_call_type() →` [`CallType`](/glider-ide/api/value/call/calltype.md)

The Call represents all types of call values: external, internal, log emit, etc. This function can be used to get the type of the call.

**Query Example**

```python
from glider import *

def query():
    instructions = (
        Instructions()
        .exec(100)
        .filter(lambda x: x.is_call())
    )

    for ins in instructions:
        call = ins.get_value()
        if isinstance(call, Call):
            print(call.get_call_type())

    return instructions
```

**Output**

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