Skip to main content
GET
/
v3
/
products
List Products
curl --request GET \
  --url https://app.plugchoice.com/api/v3/products \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "sku": "<string>",
      "active": true,
      "digital": true,
      "price": 123
    }
  ]
}
Returns a list of all available products (e.g., charger licenses).

Response

data
array
Array of product objects.