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

# List Saved Searches

> Returns a paginated list of saved award searches for your organization

## Request

<ParamField query="page" type="integer" default={1}>
  Page number for pagination
</ParamField>

<ParamField query="per" type="integer" default={50}>
  Number of results per page
</ParamField>

## Response

<ResponseField name="results" type="array">
  Array of saved search objects

  <Expandable title="Saved Search Object">
    <ResponseField name="id" type="string">
      Unique identifier for the saved search
    </ResponseField>

    <ResponseField name="name" type="string">
      Name of the saved search
    </ResponseField>

    <ResponseField name="active" type="boolean">
      Whether the saved search is currently active
    </ResponseField>

    <ResponseField name="createdByEmail" type="string">
      Email of the user who created the saved search
    </ResponseField>

    <ResponseField name="createdAt" type="string">
      ISO 8601 timestamp when the saved search was created
    </ResponseField>

    <ResponseField name="updatedAt" type="string">
      ISO 8601 timestamp when the saved search was last updated
    </ResponseField>

    <ResponseField name="query" type="object">
      Search criteria configuration containing the filters and parameters used for this saved search
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="meta" type="object">
  Pagination metadata

  <Expandable title="Meta Object">
    <ResponseField name="currentPage" type="integer">
      Current page number
    </ResponseField>

    <ResponseField name="per" type="integer">
      Number of results per page
    </ResponseField>

    <ResponseField name="total" type="integer">
      Total number of saved searches
    </ResponseField>

    <ResponseField name="totalPages" type="integer">
      Total number of pages available
    </ResponseField>
  </Expandable>
</ResponseField>

## Example Request

```bash theme={null}
curl "https://app.govly.com/api/enterprise/awards/saved_searches?page=1&per=25" \
  -H "X-API-KEY: your_api_key"
```
