List products

Lists the product references in the container along with the count of the assigned assets.

GET /v4/products

API Permissions

OBJECT_FETCH

Query parameters

ParameterTypeDefaultDescription
refsstringoptional Includes only the listed products in the results. If not set, all product references are returned.
Example:
refs=PROD1,PROD2

Try it out

Request

Copy-paste the cURL request in your Terminal or click on the API Explorer tab to see the API in action.

host: 'https://api.filerobot.com/fdocs' path: '/v4/products' headers: X-Filerobot-Key: 19692813e7364ef8ad6a6504d50a12ca parameters: refs: H03423,birds theme: clouds-midnight editor_theme: clouds_midnight method: GET render: curl_tab: true

Response

{
    "status": "success",
    "products": [
        {
            "ref": "birds",
            "stats": {
                "count_assets": 1,
                "count_images": 1
            }
        },
        {
            "ref": "H03423",
            "stats": {
                "count_assets": 3,
                "count_images": 1
            }
        }
    ]
}