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

# List Business Rules

> List Business Rules in the workspace.

Returns Business Rules in the workspace as summary objects.

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token containing your Fini workspace API key. Format: `Bearer fini_...` The key needs `read` scope.
</ParamField>

## Query parameters

<ParamField query="type" type="string" required>
  Send `business`.
</ParamField>

<ParamField query="source" type="string">
  Optional source filter. The current enum value is `widget`.
</ParamField>

## Response

Returns an array of [`Rule summary`](/en/api-reference/rules#rule-summary-object) objects without `flowConfig`. Each item includes its `botIds`.

<Note>
  Business Rules are not versioned. Do not send `includeVersions`; `versionStatus=DRAFT` returns an empty array.
</Note>

## Errors

<AccordionGroup>
  <Accordion title="400 Bad Request" icon="circle-exclamation">
    A query parameter is malformed or uses an unsupported enum value.
  </Accordion>

  <Accordion title="401 Unauthorized" icon="lock">
    The API key is missing, malformed, revoked, or invalid.
  </Accordion>

  <Accordion title="403 Forbidden" icon="shield-halved">
    The API key does not include the `read` scope required for this route.
  </Accordion>

  <Accordion title="500 Internal Server Error" icon="triangle-exclamation">
    Fini failed while loading Business Rules.
  </Accordion>
</AccordionGroup>
