--- title: 'HubSpot' description: 'Manage contacts, deals, and companies through the HubSpot CRM API.' --- # HubSpot Manage contacts, deals, and companies through the HubSpot CRM API. | Detail | Value | |---|---| | Category | CRM | | Base URL | `https://api.hubapi.com` | | Authentication | Bearer Token | | Endpoints | 7 | | Connector key | `hubspot` | ## Using HubSpot in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **HubSpot** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /crm/v3/objects/contacts](./get_crm_v3_objects_contacts_crm_listcontacts) | List contacts | | [POST /crm/v3/objects/contacts](./post_crm_v3_objects_contacts_crm_createcontact) | Create a contact | | [GET /crm/v3/objects/contacts/{contactId}](./get_crm_v3_objects_contacts_contactid_crm_getcontact) | Get a contact by ID | | [GET /crm/v3/objects/deals](./get_crm_v3_objects_deals_crm_listdeals) | List deals | | [POST /crm/v3/objects/deals](./post_crm_v3_objects_deals_crm_createdeal) | Create a deal | | [GET /crm/v3/objects/companies](./get_crm_v3_objects_companies_crm_listcompanies) | List companies | | [POST /crm/v3/objects/companies](./post_crm_v3_objects_companies_crm_createcompany) | Create a company | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.