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

# List Off-Chain Order Books

> List every book on your instance that settles off chain

Returns the books on your instance whose settlement mode is `OFF_CHAIN`, regardless of token type. Unlike [List Order Books](/endpoints/stock-trading/list-order-books), this route does not filter to `STOCK_TOKEN`, so a book created without an explicit token type still appears here.

Imported books never appear: an import is only possible for on-chain books.

## Query Parameters

<ParamField query="status" type="string">
  Restrict to one status: `ACTIVE`, `PAUSED` or `CLOSED`.
</ParamField>

## Response Fields

`data` is an array of order book records, in the same shape as [Get Order Book](/endpoints/stock-trading/get-order-book). Every entry has `settlementMode: "OFF_CHAIN"` and `custodyContract: null`.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.trusset.org/orderbooks/stocks/api/offchain/order-books?status=ACTIVE" \
    -H "X-API-Key: trusset_your_key_here"
  ```

  ```typescript TypeScript theme={null}
  const res = await fetch(
    'https://api.trusset.org/orderbooks/stocks/api/offchain/order-books?status=ACTIVE',
    { headers: { 'X-API-Key': 'trusset_your_key_here' } }
  );
  const { data } = await res.json();
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "clx_ob_stock_001",
        "instanceId": "inst_abc123",
        "name": "Nyala Fund I",
        "symbol": "NYF1",
        "status": "ACTIVE",
        "tokenType": "STOCK_TOKEN",
        "settlementMode": "OFF_CHAIN",
        "custodyContract": null,
        "minOrderSize": "1000000",
        "tickSize": "10000",
        "makerFeeBps": 5,
        "takerFeeBps": 15,
        "priceRefEnabled": true,
        "createdAt": "2025-06-01T09:00:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>
