Inputs
FilterItem
OrderItem
SelectableOption
Output
Type:List[Dict]
Returns list of deals.
Fields: dynamic (depend on the inputs)Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieves deal records from HubSpot CRM with customizable properties and filters
| App | HubSpot |
| Operation ID | hubspot_list_deals |
| Type | Action |
| Connection | hubspot (required) |
| Credits per run | 1 |
| Agent / MCP tool | Yes |
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
properties | array of string or SelectableOption | Yes | - | List of deal properties to retrieve. Common properties include: dealname, amount, dealstage, pipeline, closedate, createdate, hs_priority, dealtype, description, num_associated_contacts. |
filters | array of FilterItem | No | - | List of filters to apply to deals. Each filter must have a field, operator, and value. Example: filter by deal stage, amount, pipeline, etc. |
orders | array of OrderItem | No | - | List of fields to sort the report by. Each order must have a field and direction. The field must be one of the current selected properties. |
limit | integer | No | 10000 | Maximum number of deals to return. Default is 10000, maximum is 100000. |
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
field | string or SelectableOption | Yes | - | The field to filter on, must be one of the current selected metrics or dimensions. |
operator | string | Yes | - | The operator to use for filtering. Must be one of the supported values. Use REGEXP_MATCH to search/filter by multiple OR values like ’.(summer|holiday).’ |
value | string | Yes | - | The value to filter by, always as a string: text, a number, or a regex. For IN_LIST and NOT_IN_LIST, pass the values as one comma-separated string such as ‘a,b,c’, not as an array. For regex values, escape backslashes once in the JSON string: write \b for a word boundary, not \b. |
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
field | string or SelectableOption | Yes | - | The field to sort by. must be one of the current selected metrics or dimensions. |
direction | string | Yes | - | The order to sort by, must be one of ‘ASC’, ‘DESC’ |
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
value | string | Yes | - | |
label | string | Yes | - |
List[Dict]
Returns list of deals.
Fields: dynamic (depend on the inputs)