> ## Documentation Index
> Fetch the complete documentation index at: https://docs.spiralstake.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# get_strategy

> Full raw facts for one strategy by its Morpho market id.

Returns the complete fact set for a single strategy. Unlike `list_strategies`, it resolves any configured market id — useful for inspecting the market behind an existing position.

## Input

<ParamField path="id" type="string" required>
  Morpho market id (`0x` + 64 hex).
</ParamField>

<ParamField path="chainId" type="integer" default="1">
  `1` = Ethereum, `4663` = Robinhood Chain.
</ParamField>

## Output

The same strategy object as [`list_strategies`](/agents/tools/list-strategies), for one market. Returns an error if the id isn't an eligible strategy.

## Example

```ts theme={null}
const strategy = await call("get_strategy", { id: "0x3274643d…" });
```
