latestOpenAPI 3.1.02026-08-1828105315.1 KB

cc009fec5cdd

Catalog

listProducts - List products from your Mirakl Connect catalog

<div class="extension-title">Description</div>

Use this API to retrieve products imported in your Mirakl Connect catalog. Items are sorted by product identifiers.

<div class="api-description-extension"> <div class="extension-title">Call Frequency</div> <div class="recommended-call-frequency">Recommended usage: Synchronous: every 5 minutes</div> <div class="max-call-frequency">Maximum usage: Synchronous: once per minute</div> <div class="extension-title">Pagination</div> <p>This resource supports seek pagination (<a href="#section/Seek-pagination-and-sort">see documentation</a>)</p> </div>
get/products

Query parameters

page_tokenstring

Token to access the next or previous page

limitinteger

Maximum number of listed products

Response

List of products

next_page_tokenstring

Token to access the next page. Absent if the current page is the last one.

previous_page_tokenstring

Token to access the previous page. Absent if the current page is the first one.

Example response

{
  "data": [
    {
      "attributes": [
        {
          "type": "STRING"
        }
      ],
      "brand": "My awesome brand",
      "category": {
        "id": "123654789",
        "labels": [
          {
            "locale": "en_US",
            "value": "Fridge"
          }
        ]
      },
      "descriptions": [
        {
          "locale": "en_US",
          "value": "My awesome product's description"
        }
      ],
      "discount_prices": [
        {
          "end_date": "2025-02-19T16:46:00Z",
          "price": {
            "currency": "EUR"
          },
          "start_date": "2025-02-19T16:46:00Z"
        }
      ],
      "gtins": [
        {
          "value": "9780050666319"
        }
      ],
      "images": [
        {
          "url": "http://my_image.png"
        }
      ],
      "standard_prices": [
        {
          "price": {
            "currency": "EUR"
          }
        }
      ],
      "titles": [
        {
          "locale": "en_US",
          "value": "My awesome product"
        }
      ]
    }
  ]
}