> ## 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 offers

> List employment offers.

### Parameters

<ParamField query="status" type="string">
  Filter offers by status. Supported values are `draft`, `sent`, `accepted`,
  `declined`, `expired`, and `voided`.
</ParamField>

<ParamField query="limit" type="integer">
  Number of offers to return.
</ParamField>

<ParamField query="cursor" type="string">
  Pagination cursor.
</ParamField>

### Returns

Returns a list envelope with [Offer objects](/reference/offers/object) in
`data`.

<ResponseExample>
  ```json Response theme={null}
  {
    "object": "list",
    "data": [
      {
        "id": "ofr_8kY3pQmNvT2sW9xF",
        "object": "offer",
        "status": "sent"
      }
    ],
    "cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNi0wNi0xM1QxNjo0NTowMFoifQ"
  }
  ```
</ResponseExample>
