Intuitivo
Products

List all products

GET
/products

Returns every product available through your A-POPs.

Authorization

ApiKeyAuth
Authorization<token>

API key created in the dashboard (Settings → Manage API Keys). Sent in the Authorization header. Whether a Bearer prefix is required is unconfirmed — verify against a live request.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/products"
{  "data": [    {      "productId": "dcd53ddb-8104-4e48-8cc0-5df1088c6113",      "productName": "string",      "productPrice": 0.1,      "productThumbnail": "http://example.com",      "productSku": "string",      "quantity": 0    }  ]}
{  "errors": {    "message": "string"  }}