Retrieve multiple Logos

Returns a list of logos. This endpoint is paginated and supports searching by title.

This endpoint returns a lightweight version of the logo details with high-res image, additional fees and prices not included. To get high-res image, full pricing and additional fee information, use the Retrieve a Logo endpoint with the specific logoId.
GET /api/logos

Parameters #

ParameterTypeInDescription
pageintegerqueryThe page number to retrieve (default is 1).
limitintegerqueryThe number of items to return per page (default is 12, maximum is 25).
searchstringqueryOptional. Filters logos by title (case-insensitive partial match).

Returns #

A paged result object containing an array of logo summaries.

{
  "items": [
    {
      "logoId": 123456,
      "logoItemNo": 987654,
      "title": "New Logo",
      "widthInMM": 100,
      "HeightInMM": 50,
      "logoType": "TRANSFER",
      "transferMethodKey": "VAND SPORT",
      "colors": [
        {
          "ID": "HVID",
          "Name": "White",
          "Red": 255,
          "Green": 255,
          "Blue": 255
        },
        {
          "ID": "200",
          "Name": "PMS 200 C",
          "Red": 245,
          "Green": 56,
          "Blue": 59
        }
      ],
      "status": "Done",
      "storageCount": 25,
      "LowResBase64": "iVBORw0KGgoAAAANSU..."
    },
    ...
  ],
  "page": 1,
  "pageSize": 12,
  "totalCount": 345,
  "totalPages": 29
}