Skip to main content
DELETE
https://backend.anglera.com
/
products
/
{id}
Delete Product
curl --request DELETE \
  --url https://backend.anglera.com/products/{id} \
  --header 'X-Anglera-API-Key: <api-key>'
Permanently deletes a product by its ID.
This action is permanent and cannot be undone. All product data including enrichment results, price reports, and validation data will be deleted.

Request

curl -X DELETE "https://backend.anglera.com/products/8231" \
  -H "X-Anglera-API-Key: your_api_key"

Path Parameters

id
integer
required
ID of the product to delete

Response

Example Response
{
  "message": "Product deleted successfully"
}