# Chains

> SDK methods for the Chains module, accessed via `soat.chains`. See the [Chains module docs](/docs/modules/chains) for permissions and data model, and each method's REST page for the full request/response schema.

# Chains

SDK methods for the Chains module, accessed via `soat.chains`. See the [Chains module docs](/docs/modules/chains) for permissions and data model, and each method's REST page for the full request/response schema.

### `soat.chains.listChains()`

List continuation chains

- Method: `GET`
- Path: `/api/v1/chains`

```ts
await soat.chains.listChains({
  query: { /* + optional */ },
});
```

→ [Request & response schema](/docs/api/chains/list-chains)

### `soat.chains.getChain()`

Get a continuation chain

- Method: `GET`
- Path: `/api/v1/chains/{chain_id}`

```ts
await soat.chains.getChain();
```

→ [Request & response schema](/docs/api/chains/get-chain)
