HubSpot API Documentation
This is the complete API documentation for connecting to the HubSpot API using MindCloud's Universal API. If you are new to MindCloud, start with the Introduction to see how one API can sit in front of many different apps.
MindCloud is an integration company that offers one normalized API to access 3,100+ apps from a single place. It cleans up provider-specific quirks, keeps requests and responses consistent, and centralizes authentication so you do not need to manage separate flows for every app. Browse other apps.
Meet HubSpot: Manage contacts, track deals, run campaigns, and support customers. Keep reading to get started.
Quickstart
Before you run your first HubSpot request, you need three things:
- A MindCloud account — sign in or create an account at MindCloud.
- A MindCloud API Key — create one in API Keys. Keep it on your server.
- At least one HubSpot connection — create or choose one in Connections. Note its
connectionId.
Every HubSpot action uses the same URL pattern:
POST https://connect.mindcloud.co/v2/universal/apps/hubspotApp/actions/{actionSlug}/runYou need a MindCloud API Key and a HubSpot connection. Then call an action such as List Contacts:
curl --request POST \
--url "https://connect.mindcloud.co/v2/universal/apps/hubspotApp/actions/list-contacts/run" \
--header "Authorization: Bearer $MINDCLOUD_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"connectionId": "$CONNECTION_ID",
"arguments": {}
}'Every response comes back in the same envelope, with your rows in a data array:
{
"success": true,
"data": [
{ "id": "1042", "name": "Ava" }
],
"meta": {}
}After your first request works, use Shape your requests to control arguments, pagination, filtering, fields, and errors.
Authenticate with a MindCloud API Key plus a connectionId for your HubSpot account. See HubSpot API Authentication for the full flow and how to get your connection credentials.
HubSpot actions
All 93 published actions for this HubSpot version. Each page documents the endpoint, arguments, and response controls.
- POSTAdd User
- DELETEArchive Project by ID
- DELETEArchive Task by ID
- PUTAssociate Task with Project
- POSTBatch Create Orders
- GETBatch Read Contacts
- GETBatch Read Engagements
- GETBatch Read Line Items
- GETBatch Read Notes
- GETBatch Read Projects
- PUTBatch Update Projects
- PUTBatch Upsert Contacts
- POSTCreate Company
- POSTCreate Contact
- POSTCreate Deal
- POSTCreate Engagement
- POSTCreate Line Item
- POSTCreate List
- PUTCreate Listings (v2026-03)
- POSTCreate Object Schema
- POSTCreate Pipeline Stage
- POSTCreate Product
- POSTCreate Project
- POSTCreate Property
- POSTCreate Quote
- POSTCreate Task
- DELETEDelete Association
- DELETEDelete Company by ID
- DELETEDelete Contact by ID
- DELETEDelete Property
- DELETEDelete Ticket by ID
- GETGet Account Info
- GETGet Company by ID
- GETGet Company Industries
- GETGet Contact by ID
- GETGet Deal by ID
- GETGet Email
- GETGet File Details
- GETGet Listing By ID
- GETGet Owner
- GETGet Pipeline by ID
- GETGet Pipeline Stage by ID
- GETGet Project by ID
- GETGet Property Details
- GETGet Quote by ID
- GETGet Shipping Method
- GETGet Subscription by ID
- GETGet Task by ID
- GETGet Ticket by ID
- GETGet User
- GETList Associations
- GETList Business Units for User
- GETList Companies
- GETList Company Contacts
- GETList Company Contacts v2026-03
- GETList Contact Companies
- GETList Contacts
- GETList Deal Line Items
- GETList Deal Quotes
- GETList Deals
- GETList Emails
- GETList Forms
- GETList Owners
- GETList Pipelines
- GETList Projects
- GETList Properties
- GETList Subscriptions
- GETList Tasks
- GETList Tickets
- GETList Users
- PUTRemove Task from Project
- GETSearch Companies
- GETSearch Contacts
- GETSearch Deals
- GETSearch Engagements
- GETSearch Files
- GETSearch Invoices
- GETSearch Lists
- GETSearch Orders
- GETSearch Products
- GETSearch Projects
- GETSearch Subscriptions
- GETSearch Tasks
- GETSearch Tickets
- PUTUpdate Company by ID
- PUTUpdate Contact by ID
- PUTUpdate Custom Object Record
- PUTUpdate Deal by ID
- PUTUpdate Engagement by ID
- PUTUpdate Invoice by ID
- PUTUpdate Project by ID
- PUTUpdate Task by ID
- GETUpload Files
Related apps
More apps on the Universal API, behind the same REST shape. Or browse all apps.