Products

Retrieve uploaded product images for your account.

GET /api/external/products

Returns a list of all product images uploaded to your account.

Headers

HeaderRequiredDescription
X-Api-KeyYesYour API key in the format mk_live_xxx.secret

Query Parameters

No query parameters.

Response

{
  "products": [
    {
      "id": "prod_abc123",
      "name": "White T-Shirt Front",
      "thumbnail": "https://cdn.example.com/products/thumb_abc123.jpg",
      "status": "UPLOADED",
      "createdAt": "2026-03-20T14:30:00.000Z"
    }
  ],
  "count": 1
}

Error Responses

CodeMeaning
401Missing or invalid API key
500Internal server error

Notes

  • This endpoint does not consume any credits.
  • Only products belonging to the account associated with the API key are returned.

Example

curl -X GET "https://app.qamera.ai/api/external/products" \
  -H "X-Api-Key: mk_live_abc123.secret456"