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

# List extracts

> Returns durable quote records behind Plane citation blocks.

### Parameters

<ParamField type="string" path="source">
  Legal source ID to filter by.
</ParamField>

<ParamField type="string" path="eid">
  Normalized provision eid to filter by. Requires `source`.
</ParamField>

<ParamField type="string" path="provision">
  Stable provision ID, prefixed `lpv_`, to filter by.
</ParamField>

<ParamField type="string" path="country">
  Country code for the legal source jurisdiction.
</ParamField>

<ParamField type="string" path="state">
  State or subdivision code for the legal source jurisdiction.
</ParamField>

<ParamField type="number" path="limit">
  A limit on the number of objects to be returned. Limit can range between 1 and 100.
</ParamField>

<ParamField type="string" path="cursor">
  Opaque pagination cursor.
</ParamField>

### Returns

Returns the platform list envelope with `object`, `data`, and `has_more`. When
`has_more` is true the envelope also includes `cursor`, the opaque token to pass
as `cursor` on the next request. `data` contains
[extract objects](/reference/extracts/object).

<ResponseExample>
  ```json Response theme={null}
  {
    "object": "list",
    "data": [
      {
        "id": "extr_9XkQw2NvR4pYtJ",
        "object": "extract",
        "workspace": null,
        "source": { "object": "legal.provision", "id": "lpv_7RmKw3QvT9pXsL" },
        "jurisdiction": { "country": "GB" },
        "quote": "not less than one week's notice",
        "language": "en",
        "url": "https://manage.plane.com/extracts/extr_9XkQw2NvR4pYtJ",
        "created": "2026-06-13T00:00:00Z",
        "updated": "2026-06-13T00:00:00Z"
      }
    ],
    "has_more": false
  }
  ```
</ResponseExample>
