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

# list_help_center_articles

List Qobra's Help Center articles; returns summary rows + pagination.

The Help Center is Qobra's public product documentation (synced from Intercom).
Use it to ground answers about how Qobra works, then call
`get_help_center_article` with a row's `id` (or name) to read the full body.

Each row carries the article `id` (for the follow-up call), the `title`, the
author-written `description` (`None` when the article has none — there is no
generated summary), the `url` and `updated_at`. Rows are ordered
alphabetically by title. Articles are global Qobra docs, identical for every
user, so any authenticated caller sees the same results.

## Parameters

<Accordion title="Body" defaultOpen>
  <ParamField body="search" type="string">
    Keyword filter, matched case-insensitively as a substring of the article
    title or body. Omit it to list every article, alphabetically by title.
  </ParamField>

  <ParamField body="limit" type="integer">
    Page size, between 1 and 250. Defaults to 50.
  </ParamField>

  <ParamField body="offset" type="integer">
    Row offset into the result set — the number of rows to skip before this
    page. Pass the next\_offset returned by the previous call, or None for the
    first page.
  </ParamField>
</Accordion>

## Response

<Accordion title="Body" defaultOpen>
  <ResponseField name="articles" type="object[]">
    <Expandable title="object properties">
      <ResponseField name="id" type="string" />

      <ResponseField name="title" type="string" />

      <ResponseField name="description" type="string">
        The author-written description.
      </ResponseField>

      <ResponseField name="resource_url" type="string">
        Public URL of this help-center article (an external help.qobra.co link,
        not a Qobra web-app page); null if unpublished.
      </ResponseField>

      <ResponseField name="updated_at" type="string" />
    </Expandable>
  </ResponseField>

  <ResponseField name="next_offset" type="integer" />
</Accordion>
