---
title: "List Opportunities"
method: POST
path: "/v1/opportunities/list"
tags: ["Opportunities"]
---

# List Opportunities

`POST /v1/opportunities/list`

Returns a paginated list of opportunities.

## Request body

- OpportunityListRequest
  - `filters` union — Filters to apply. Accepts either a flat list of filter rules, implicitly ANDed together, or a recursive filter expression with 'operator' and 'filters'. When an expression omits 'operator', it defaults to 'and'. Filter field names, their valid operators, and allowed values come from GET /v1/schemas/{entity} — each field lists 'allowed_operators' and 'enum_field_settings.allowed_values'. Custom fields are keyed 'custom_field_<uuid>'; related-entity custom fields use '<relation>.custom_field_<uuid>' and are filter-only.
    - FilterRule[]
      - `field` string, required
      - `condition` string, required
      - `value` unknown
    - FilterExpression — A filter expression with an explicit operator. Contains filters that can be either FilterRule objects (leaf nodes) or nested FilterExpression objects (branch nodes), allowing for arbitrarily nested filter structures.
      - `operator` 'and' | 'or' — Logical operators to combine filters or filter expressions.
      - `filters` union[]
        - union
          - FilterRule
            - `field` string, required
            - `condition` string, required
            - `value` unknown
          - FilterExpression — recursive
  - `page` integer — Page number (1-indexed)
  - `page_size` integer — Number of results per page
  - `sort` string — Field to sort by. Prefix with '-' for descending order.
  - `include_custom_fields` boolean — Whether to include custom fields (`custom_field_<uuid>` keys) on each returned opportunity. Defaults to true. Set false to omit them for leaner responses; GET /v1/opportunities/{opportunity_id} always returns them.

## Response `200`

Successful Response

- PublicListResponseOpportunityResponse
  - `data` OpportunityResponse[], required
    - `id` string, required — Unique identifier for the opportunity
    - `account_id` string, required — ID of the associated account
    - `name` string, nullable — Name of the opportunity
    - `owner` OwnerInfo
      - `id` string, required — Unique identifier of the user
      - `first_name` string, nullable — First name of the user
      - `last_name` string, nullable — Last name of the user
    - `stage` string, nullable — Current pipeline stage of the opportunity
    - `estimated_value` EstimatedValue
      - `currency_code` string, nullable — ISO 4217 currency code
      - `amount` integer, nullable — Value in minor currency units (e.g. cents)
    - `estimated_close_date` string, nullable — Expected close date for the opportunity
    - `actual_close_date` string, nullable — Actual date the opportunity was closed
    - `summary` string, nullable — AI-generated summary of the opportunity
    - `risks` string[] — Identified risks for the opportunity
    - `notes` string, nullable — Notes about the opportunity
    - `tags` string[] — List of tag names associated with the opportunity
    - `last_activity_at` string, date-time, nullable — Date and time of the last activity on the opportunity
    - `updated_at` string, date-time, nullable — Date and time the opportunity record was last updated
    - `created_at` string, date-time, required — Date and time the opportunity was created
  - `pagination` PaginationInfo, required
    - `page` integer, required — Current page number
    - `page_size` integer, required — Number of results per page
    - `total_count` integer, required — Total number of matching records
    - `total_pages` integer, required — Total number of pages
  - `meta` ResponseMeta
    - `timestamp` string, date-time — Server timestamp of the response

## Other responses

- `4XX` — Client error

---

[API](https://skmtc.net/monaco/apis/monaco-public-api.md) · [All operations](https://skmtc.net/monaco/apis/monaco-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/monaco/monaco-public-api/versions/ec4d9b2b035b/schema)
