Get a List of your Products October 06 2015

GET a list all your products...

/api/v3/products
/api/v3/products?page=2

Example result...

{
  "products": [
    {
            "created_at": "2021-09-12T12:34:55Z",
            "currency": "USD",
            "download_count": 2,
            "id": 123,
            "item_urls": [
        {
                "created_at": "2021-09-12T12:34:55Z",
                "download_count": 2,
                "id": 3088243,
                "name": "Download Link",
                "updated_at": "2021-09-13T10:11:12Z",
                "url": "http://www.example.com"
        }
      ],
            "name": "My Product",
            "orders_count": 1,
            "price": 10.99,
            "sku": "ABC123",
            "updated_at": "2021-09-13T10:11:12Z"
    }
  ]
}