Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / E Commerce / Hubspot / Products
Products logo

HubSpot Products

Browse all Hubspot APIs
✓ Official Vendor SpecE CommerceStorefrontoauth2,apiKey11 EndpointsREST

For Agents

Manage the HubSpot product catalogue with create, read, update, archive, and search across single records and batches of up to 100 products.

Use for: I need to seed a HubSpot portal with products from our PIM, Find a product by SKU, Update the price on a list of products, List all products in the catalogue

Not supported: Does not manage inventory levels, fulfilment, or storefront rendering — use for HubSpot CRM product catalogue records only.

The HubSpot CRM Products API manages the product catalogue inside a HubSpot portal — the master list of products that quotes, deals, and orders reference through line items. It supports the full CRM object pattern: read, list, patch, and archive single products, plus batch read, create, update, and archive of up to 100 products per call, and a search endpoint with filter groups and sort. Use it to seed a HubSpot portal from an external product database, keep prices and SKUs in sync with an upstream system of record, and build product pickers inside sales tools that talk straight to the live catalogue.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Products to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Products, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Products API.

Create a product with name, SKU, price, and custom properties

Read a product record by ID with property selection

Update product properties such as price or description without overwriting unrelated fields

List products with cursor-based pagination

Search products by SKU, price range, or any custom property

Batch create, update, read, or archive up to 100 products per call

Use Cases

Patterns agents use Products API for, with concrete tasks.

★ Catalogue sync from a PIM

Keep the HubSpot product catalogue in lockstep with an upstream Product Information Management system. Use POST /crm/v3/objects/products/batch/create for new SKUs, POST /crm/v3/objects/products/batch/update for price and description changes, and POST /crm/v3/objects/products/batch/archive for discontinued items. Each call handles up to 100 products and the search endpoint can verify the change landed.

POST 100 products to /crm/v3/objects/products/batch/create with name, hs_sku, and price properties, and verify each returned a non-null id.

Price update across SKUs

Run a bulk price update — for example a quarterly list-price refresh — across hundreds of products in a few calls. POST /crm/v3/objects/products/batch/update accepts up to 100 records per request, each with the product ID and the new price value.

POST /crm/v3/objects/products/batch/update with 50 entries, each setting the price property to the new list value.

Product picker for a sales tool

Build a product picker inside a sales tool that searches the live HubSpot catalogue. POST /crm/v3/objects/products/search with a filter on SKU or name returns matching products with their price and custom properties so the rep selects the right SKU when building a quote.

POST a search to /crm/v3/objects/products/search filtering hs_sku CONTAINS_TOKEN 'AB-' and return the first 25 matching products.

AI agent execution through Jentic

An agent that needs to manage the catalogue discovers this API via Jentic's intent search using a query like 'create a hubspot product' or 'find hubspot product by sku', loads the input schema for the chosen operation, and executes the call with credentials supplied from the Jentic vault. The same flow handles batch and search.

Search Jentic for 'create a hubspot product', load POST /crm/v3/objects/products/batch/create, and execute with one product entry.

Key Endpoints

11 endpoints — the hubspot crm products api manages the product catalogue inside a hubspot portal — the master list of products that quotes, deals, and orders reference through line items.

METHOD

PATH

DESCRIPTION

GET

/crm/v3/objects/products/{productId}

Read a single product by ID

PATCH

/crm/v3/objects/products/{productId}

Update properties on a product

DELETE

/crm/v3/objects/products/{productId}

Archive a product

GET

/crm/v3/objects/products

List products with pagination

POST

/crm/v3/objects/products/batch/create

Create up to 100 products in one call

POST

/crm/v3/objects/products/batch/update

Update up to 100 products in one call

POST

/crm/v3/objects/products/batch/read

Read up to 100 products by ID

POST

/crm/v3/objects/products/batch/archive

Archive up to 100 products in one call

GET

/crm/v3/objects/products/{productId}

Read a single product by ID

PATCH

/crm/v3/objects/products/{productId}

Update properties on a product

DELETE

/crm/v3/objects/products/{productId}

Archive a product

GET

/crm/v3/objects/products

List products with pagination

POST

/crm/v3/objects/products/batch/create

Create up to 100 products in one call

POST

/crm/v3/objects/products/batch/update

Update up to 100 products in one call

POST

/crm/v3/objects/products/batch/read

Read up to 100 products by ID

POST

/crm/v3/objects/products/batch/archive

Archive up to 100 products in one call

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

HubSpot OAuth and private app tokens live encrypted in the Jentic vault. Jentic injects the Authorization header at execution time so credentials never appear in agent prompts, transcripts, or logs.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g. 'create a hubspot product' or 'find hubspot product by sku') and Jentic returns the matching Products operation with its JSON Schema, including the property names the catalogue uses.

Time to first call

Time to first call

Direct integration: half a day to wire OAuth, batch payloads, and search filters. Through Jentic: under 30 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

HubSpot CRM Line Items

→

Creates the line items that bind products to deals, quotes, and orders

Use after creating a product to attach a quantity-and-price line item to a deal.

Complementary

HubSpot CRM Quotes

→

Generates customer-facing quotes that include products via line items

Pick this when an agent needs to assemble a sellable quote from products in the catalogue.

Alternative

HubSpot CRM Objects

→

Generic CRM record API that can also reach products via the objectType path

Use this when you want a single integration that covers many object types rather than a products-specific client.

FAQs

Specific to using Products API through Jentic.

What authentication does the HubSpot Products API use?

It accepts OAuth 2.0 access tokens and private app access tokens passed as a Bearer credential in the Authorization header. Through Jentic, the token is stored encrypted in the credential vault and attached at request time.

Can I attach a product to a deal or quote through this API?

Not directly. Products are linked to deals and quotes via line items. Create the product here, then create a line item that references the product ID and associate the line item with the deal or quote.

What are the rate limits for the HubSpot Products API?

Standard HubSpot account limits apply, typically 100 requests per 10 seconds for OAuth apps. Use the batch endpoints under /crm/v3/objects/products/batch/* to ingest or update up to 100 products in a single request.

How do I find a product by SKU through Jentic?

Search Jentic with 'find hubspot product by sku', load POST /crm/v3/objects/products/search, and execute with a filterGroups payload setting propertyName=hs_sku and an EQ operator on the SKU value.

Is the HubSpot Products API free?

It is included with HubSpot accounts that have CRM access enabled; there is no per-call charge. The Commerce Hub adds related capabilities (quotes, payments) but the products endpoints themselves are part of the standard CRM.

How do I bulk-archive discontinued products?

POST /crm/v3/objects/products/batch/archive with an inputs array of up to 100 product IDs. Archived products no longer appear in the active list but can still be read by ID for historical reporting.

GET STARTED

Start building with Products API

Explore with Jentic
View OpenAPI Document