Products
Retrieve uploaded product images for your account.
GET /api/external/products
Returns a list of all product images uploaded to your account.
Headers
| Header | Required | Description |
|---|---|---|
| X-Api-Key | Yes | Your 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
| Code | Meaning |
|---|---|
| 401 | Missing or invalid API key |
| 500 | Internal 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"