Product Templates

Getting started

Basic Product Catalog

Get the Kaimo Internal Vendor Catalog

By default, we have many products to choose from but if you wish to use your own, feel free to reach out to Nick at nick@mykaimo.com in order to add your own.

curl --location --request GET 'https://dev.mykaimo.com/variants' \
--header 'X-Amz-Security-Token: your-api-key'

Vendor Product Type

  {
    name: 'string',
    category: 'string',
    description: 'html string',
    materials: 'string',
    price: 'string',
    currency: 'string',
    inventory: 'string',
    designareas: [
      {
        name: 'string',
        height: number,
        width: number,
        x: number,
        y: number,
      },
    ],
    size: 'string',
    weight: 'string',
    color: 'string',
    hex: 'string',
    sku: 'string',
    brand: 'string',
    style: 'string',
    vendor: 'string',
    mocks: [
      {
        image: 'string',
        view: 'string',
      },
    ],
  },

Example Response is an Array of Vendor Product Type

  [{
    name: '1000 Pieces',
    category: 'Jigsaw Puzzle',
    description:
      'The completed jigsaw puzzle is a beautiful poster. Made to deliver wholesome downtime for friends &amp; family. Ships in gift-ready box for a show-stopping presentation.<br><br>* Satin finish image sublimated on chipboard<br>* Suitable for hanging and framing<br>* 16 x 20 inches, 500 pieces',
    materials: 'sublimated on chipboard',
    price: '23.99',
    currency: 'USD',
    inventory: '0',
    designareas: [
      {
        name: 'front',
        height: 900,
        width: 900,
        x: 50,
        y: 50,
      },
    ],
    size: '16x20',
    weight: 12,
    color: 'white',
    hex: '000000',
    sku: 'PZ02H',
    brand: 'Fuji',
    style: 'PZ02H',
    vendor: 'Fuji',
    mocks: [
      {
        image: 'https://s3.us-west-2.amazonaws.com/assets.nftapp/blank.png',
        view: 'front',
      },
    ],
  }]
Previous
Getting started