Products – List of Products

This call allows you to send a simple HTML GET request to pull the information for the list of products in the Gooten product catalog. Sending the GET request will return the latest product data generated from our system.

The GET products URL can give you the following data for the product(s):

    • Name of the product
    • Type of product
    • Description of the product
    • Cheapest price of the product
    • Cheapest shipping price of the product
    • The product Id
    • Whether the product is an embroidery product or not
    • Whether the product is out of stock or not
    • Whether the product is deprecated or not
    • The URL that includes a product preview of the product

1. To get the list of products, please send a GET request to the following URL:

    https://gtnadminassets.blob.core.windows.net/productdatav3/catalog.json

2. Once you send the GET request, it will yield the following response which includes the list of products from our product catalog:


{
    "product-catalog": [{
        "name": "Bestsellers",
        "type": "category",
        "meta_title": "Trending Dropshipping Products | Gooten",
        "meta_description": "Browse Gooten's collection of the trending print on demand products for eCommerce businesses, including apparel, decor & more. Get inspired - create your business own here.",
        "description": "Our trending products ready for your custom designs and images",
        "items": [{
            "vendor_routing": "|14;*",
            "product_id": 352,
            "meta_description": "Our exclusive collection of woven pillows is expertly crafted to bring comfort and elegance to your living space. These decorative pillows are made from a carefully woven blend of 58% cotton and 42% polyester yarns, ensuring a cozy and luxurious feel. With their double-sided design and tapestry fabric, they offer versatility and style, perfect for enhancing any room's ambiance. Each pillow is filled with high-quality poly fill and securely sewn closed. The finer yarn count and tight weaving of the threads beautifully captures the most intricate designs, making this customizable woven pillow a cherished piece of home decor.  Make sure to check our throw pillows and woven blankets that could be a great addition for your on demand store collection.",
            "url": "https://appassets.azureedge.net/product-throwpillows/Preview/Latest/Pillow_Woven_Catalog_Photo_01.png",
            "name": "Woven Pillows",
            "meta_title": "Print On Demand Woven Pillows | Gooten",
            "cheapest_shipping": "$9.49",
            "deprecated": false,
            "cheapest_price": "$22.40",
            "out_of_stock": false,
            "type": "product",
            "staging_product_id": 1351
        }]
    }]
}


Example of error response:

Status code 404 - The specified blob does not exist.