curl --request POST \
--url https://api.monaco.com/v1/opportunities/list \
--header 'Content-Type: application/json' \
--data '
{
"filters": [
{
"field": "name",
"condition": "contains",
"value": "Acme"
}
]
}
'{
"data": [
{
"id": "opp_abc123",
"account_id": "acc_def456",
"name": "Acme Corp - Enterprise License",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"stage": "Meeting Booked",
"estimated_value": {
"currency_code": "USD",
"amount": 50000
},
"estimated_close_date": "2025-09-30",
"actual_close_date": "2025-10-15",
"summary": "Enterprise deal with strong champion. Procurement review in progress.",
"risks": [
"Budget constraints",
"Competing vendor evaluation"
],
"notes": "Follow up after Q3 board meeting",
"tags": [
"High Priority"
],
"last_activity_at": "2025-08-20T14:30:00Z",
"updated_at": "2025-08-21T14:30:00Z",
"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"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Opportunities
List Opportunities
Returns a paginated list of opportunities.
POST
/
v1
/
opportunities
/
list
curl --request POST \
--url https://api.monaco.com/v1/opportunities/list \
--header 'Content-Type: application/json' \
--data '
{
"filters": [
{
"field": "name",
"condition": "contains",
"value": "Acme"
}
]
}
'{
"data": [
{
"id": "opp_abc123",
"account_id": "acc_def456",
"name": "Acme Corp - Enterprise License",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"stage": "Meeting Booked",
"estimated_value": {
"currency_code": "USD",
"amount": 50000
},
"estimated_close_date": "2025-09-30",
"actual_close_date": "2025-10-15",
"summary": "Enterprise deal with strong champion. Procurement review in progress.",
"risks": [
"Budget constraints",
"Competing vendor evaluation"
],
"notes": "Follow up after Q3 board meeting",
"tags": [
"High Priority"
],
"last_activity_at": "2025-08-20T14:30:00Z",
"updated_at": "2025-08-21T14:30:00Z",
"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"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Body
application/json
- FilterRule · object[]
- FilterExpression · object
Show child attributes
Show child attributes
Page number (1-indexed)
Required range:
x >= 1Example:
1
Number of results per page
Required range:
1 <= x <= 500Example:
25
Field to sort by. Prefix with '-' for descending order.
Example:
"-created_at"
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.