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

# Call.get\_call\_value()

`get_call_value() → List[`[`Value`](/glider-ide/api/value.md)`]`

As some types of calls can have, a special parameter set representing the ether value to send in the call), this function can be used to retrieve that value.

For example, in the call:

```solidity
(bool success, ) = recipient.call{value: amount}("");
```

The special parameter `value` is being set: `{value: amount}`

and the function will return the Value representing the:

`amount`

**Query Example**

```python
from glider import *

def query():
    instructions = (
        Instructions()
        .low_level_function_calls()
        .exec(1)
    )

    for ins in instructions:
        print(ins.get_value().get_callee_values()[0].get_call_value())
        print(ins.get_value().get_callee_values()[0].get_call_value().expression)


    return instructions
```

**Output Example**

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