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

# Call.get\_special\_params()

Return the dict representing the special params of the call

`get_special_params() → Dict[str, List[`[`Value`](/glider-ide/api/value.md)`]]`

Some of the call types can have special parameters like `gas, salt, value`.  The function can be used to get a dict representing these values.

## **Query Example**

```python
from glider import *

def query():
  instructions = (
    Instructions()
    .external_calls()
    .exec(10,20)
    .filter(lambda instruction : instruction.get_parent().name == "_disperseEth")
  )

  results =[]

  for instruction in instructions:
    for call in instruction.get_components():
        if isinstance(call, Call):
          special_params = call.get_special_params()
          if special_params['call_value']:
            results.append(instruction)
            print(call.get_special_params(), call.expression)
    
  return results
```

## **Example Output**

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FAN3CrOBUHHzKbkkeqzhb%2FScreenshot%202025-09-09%20at%202.38.45%E2%80%AFPM.png?alt=media&amp;token=395236f6-c99e-4aa2-844b-bab59dc90049" alt=""><figcaption></figcaption></figure>
