Skip to main content
POST
/
v1
/
opportunities
/
list
List Opportunities
curl --request POST \
  --url https://api.example.com/v1/opportunities/list \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": [
    {
      "condition": "contains",
      "field": "name",
      "value": "Acme"
    },
    {
      "condition": "is",
      "field": "status",
      "value": "active"
    }
  ],
  "page": 1,
  "page_size": 50,
  "sort": "-created_at"
}
'
{
  "data": [
    {
      "id": "opp_abc123",
      "account_id": "acc_def456",
      "name": "Acme Corp - Enterprise License",
      "stage": "negotiation",
      "estimated_value": {
        "currency_code": "USD",
        "amount": 5000000
      },
      "estimated_close_date": "2025-09-30",
      "tags": [
        "High Priority"
      ],
      "created_at": "2025-06-01T09:00:00Z",
      "custom_field_550e8400-e29b-41d4-a716-446655440001": "outbound",
      "custom_field_6ba7b810-9dad-11d1-80b4-00c04fd430c8": "commit"
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 50,
    "total_count": 34,
    "total_pages": 1
  },
  "meta": {
    "timestamp": "2026-04-21T12:00:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.monaco.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
filters
FilterRule · object
page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
Example:

1

page_size
integer
default:50

Number of results per page

Required range: 1 <= x <= 500
Example:

25

sort
string
default:-created_at

Field to sort by. Prefix with '-' for descending order.

Example:

"-created_at"

Response

Successful Response

data
OpportunityResponse · object[]
required
pagination
PaginationInfo · object
required
meta
ResponseMeta · object