There's a new version of the HubSpot API

As of November 30, 2022, HubSpot API keys are no longer a supported authentication method for accessing HubSpot APIs. Instead, you should use a private app access token or OAuth to authenticate API calls. Learn more about this change and how to migrate an API key integration to use a private app instead.

Get all pipelines for a specified object type

Last updated May 15, 2023

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 private app access token Authorization: Bearer {token} header 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