get-products
Returns all products from the organization's product catalog. Products can be linked to assets and used as references for AI image generation.
Parameters
None.
Response
| Field | Type | Description |
|---|---|---|
insertProducts | array | List of products |
insertProducts[].id | string | Product identifier |
insertProducts[].name | string | Product name |
insertProducts[].productImageUrl | string | null | URL of the main product image |
insertProducts[].hasPackagingDistinction | boolean | Whether the product supports packaging vs. content distinction for AI generation |
insertProducts[].createdAt | string | ISO date |
insertProducts[].updatedAt | string | ISO date |
total | number | Total number of products |
Example
Request:
{
"tool": "get-products",
"arguments": {}
}
Response:
{
"insertProducts": [
{
"id": "prod_abc123",
"name": "Summer Collection T-Shirt",
"productImageUrl": "https://cdn.heycreo.io/...",
"hasPackagingDistinction": false,
"createdAt": "2026-02-01T09:00:00.000Z",
"updatedAt": "2026-03-15T11:00:00.000Z"
}
],
"total": 1
}