Skip to main content
GET
/
crm-objects
/
v1
/
objects
/
products
/
{id}
Get a product by ID
curl --request GET \
  --url https://api.hubapi.com/crm-objects/v1/objects/products/{id}
[
  {
    "objectType": "PRODUCT",
    "portalId": 62515,
    "objectId": 1642767,
    "properties": {},
    "version": 1,
    "isDeleted": false
  },
  {
    "versions": [
      {
        "name": "price",
        "value": "27.50",
        "timestamp": 1525287096980,
        "source": "API",
        "sourceVid": []
      }
    ],
    "value": "27.50",
    "timestamp": 1525287096980,
    "source": "API",
    "sourceId": null
  },
  {
    "versions": [
      {
        "name": "name",
        "value": "A new product",
        "timestamp": 1525287096980,
        "source": "API",
        "sourceVid": []
      }
    ],
    "value": "A new product",
    "timestamp": 1525287096980,
    "source": "API",
    "sourceId": null
  },
  {
    "versions": [
      {
        "name": "description",
        "value": "A description of this product.",
        "timestamp": 1525287096980,
        "source": "API",
        "sourceVid": []
      }
    ],
    "value": "A description of this product.",
    "timestamp": 1525287096980,
    "source": "API",
    "sourceId": null
  }
]

Response

200 - application/json

Successful response - Get a specific product by its ID

The response is of type object.

Last modified on December 12, 2025