There's a new version of the HubSpot API

As of November 30, 2022, HubSpot API Keys are being deprecated and are no longer supported. Continued use of HubSpot API Keys is a security risk to your account and data. Your API Keys could be deactivated at any time after Nov. 30th, and we recommend that you migrate to Private Apps as soon as possible so you do not lose business-critical functionality.

Get all pipelines for a specified object type

Last updated June 17, 2020

GET /crm-pipelines/v1/pipelines/:object_type

Method Details

HTTP Methods:

GET

Response Format:

json

Requires Authentication?

Yes

Rate Limited?

Yes

Headers

User-Agent

Products:

CRM and Service Hub

This endpoint is used to get all pipelines for either deals or tickets. (These are currently the only supported object types for this endpoint.)

Use case for this endpoint: It can be used to sync all of a particular company's deal pipelines to an external system.

Note: This endpoint requires either the contacts scope (to fetch deals pipelines) or the tickets scope.
Required parameters How to use Description
OAuth access token or API key Authorization: Bearer {token} header or hapikey={key} query parameter. Used to authenticate the request. Please see this page for more details about authentication.
Object type /:object_type
Used in the request URL

The object type that you want the pipelines for.

Must be one of:

  • deals
  • tickets

Optional parameters How to use Description
Include inactive &includeInactive=
Used in the request URL

Whether or not to include inactive pipelines. Inactive pipelines and stages cannot be used when creating or updating objects.

Must be one of:

  • EXCLUDE_DELETED (default)
  • INCLUDE_DELETED