Products

Introduction

Our API supports various print products that come with predefined sizes, paper stocks, and finishings to cater to different printing requirements.

The availability of Products, paper stocks, and finishings is linked to your subscription tier. Talk to your Account Manager to find out which tier is best for you.

To view what products are available to you, go to the Products page. Alternatively, you can use the /products API:

curl
curl -H "Authorization: Bearer <your-token>" https://api.printedapi.com/1.0/products
httpie
https -A bearer -a <your-token> https://api.printedapi.com/1.0/products

Example Products

/products
[
  {
      "id": "7bea462b-f281-415e-92a8-6c62c5df21d4",
      "name": "Business Cards",
      "is_allowed_custom_quantities": true,
      "is_allowed_custom_sizes": false,
      "is_system": false,
      "created_at": {
          "iso": "2017-11-06T17:20:34+00:00"
      },
      "updated_at": {
          "iso": "2024-01-02T14:28:46+00:00"
      }
  },
  {
      "id": "00313bbb-1df5-48cc-9e56-ad2fd6ae4cf6",
      "name": "Postcards",
      "is_allowed_custom_quantities": true,
      "is_allowed_custom_sizes": false,
      "is_system": false,
      "created_at": {
          "iso": "2017-11-06T17:20:34+00:00"
      },
      "updated_at": {
          "iso": "2024-01-02T14:29:34+00:00"
      }
  }
]
/products/{id}
{
  "id": "00313bbb-1df5-48cc-9e56-ad2fd6ae4cf6",
  "name": "Postcards",
  "is_system": false,
  "is_allowed_custom_quantities": true,
  "is_allowed_custom_sizes": false,
  "created_at": {
      "iso": "2017-11-06T17:20:34+00:00"
  },
  "updated_at": {
      "iso": "2024-01-02T14:29:34+00:00"
  }
}