Go to Studio

HubSpot List Companies

Fetch companies from HubSpot CRM

What does this node do?

Retrieves a list of companies from your HubSpot CRM with optional filtering.

Configuration

limit number default: 100

Maximum companies to return.

properties array

Properties to include in response.

filters object

Optional filters (industry, size, etc.).

Output

{
  "companies": [
    {
      "id": "123456",
      "name": "Acme Inc",
      "domain": "acme.com",
      "industry": "Technology",
      "numberofemployees": "50-100"
    }
  ],
  "total": 500
}

Example

Process all companies:

graph LR
    A[List Companies] --> B[Loop]
    B --> C[Enrich Data]
    C --> D[Update Company]