Skip to main content
GET
https://backend.anglera.com
/
products
/
lookup
Lookup Product
curl --request GET \
  --url https://backend.anglera.com/products/lookup \
  --header 'X-Anglera-API-Key: <api-key>'
Looks up a single product by its name and sheet ID.

Request

curl "https://backend.anglera.com/products/lookup?name=Frigidaire+36-in+Side-by-side+Fridge&sheet_id=100" \
  -H "X-Anglera-API-Key: your_api_key"

Query Parameters

name
string
required
Product name to look up (the canonical identifier used when the product was created)
sheet_id
string
required
ID of the sheet containing the product

Response

Returns the full product record if found, or 404 if no matching product exists.
Example Response
{
  "id": 8231,
  "name": "Frigidaire 36-in Side-by-side Fridge",
  "sku": "FRSS26L3AF",
  "sheet_id": 100,
  "status": "READY",
  "response_data": {
    "brand_name": "Frigidaire",
    "key_features": ["Energy Star certified", "Adjustable shelves"]
  },
  "source_urls": ["https://example.com/product/123"],
  "created_at": "2025-10-15T14:30:00.000Z",
  "updated_at": "2025-10-15T14:35:00.000Z"
}