Skip to main content
GET
https://backend.anglera.com
/
feed
/
{sheet_id}
Fetch Enriched Products
curl --request GET \
  --url https://backend.anglera.com/feed/{sheet_id} \
  --header 'X-Anglera-API-Key: <api-key>'
{
  "org_id": "<string>",
  "sheet_id": "<string>",
  "products": [
    {
      "id": 123,
      "sku": "<string>",
      "name": "<string>",
      "status": "<string>",
      "updated_at": "<string>",
      "source_urls": [
        {}
      ],
      "attributes": {}
    }
  ]
}
Returns all enriched products from the specified sheet.

Request

curl "https://backend.anglera.com/feed/100" \
  -H "X-Anglera-API-Key: your_api_key"

Path Parameters

sheet_id
string
required
ID of the sheet to fetch products from

Response

org_id
string
Organization ID
sheet_id
string
Sheet ID
products
array
List of products with enriched data
Example Response
{
  "org_id": "4023cd29-175e-48d0-a314-84bf2b82a3ac",
  "sheet_id": "100",
  "products": [
    {
      "id": 2351,
      "sku": "44616",
      "name": "Frigidaire 36-in Side-by-side Fridge",
      "status": "READY",
      "updated_at": "2025-05-22T13:45:00Z",
      "source_urls": [
        "https://www.costco.ca/frigidaire-36-in-25.6-cu-ft.-stainless-steel-side-by-side-refrigerator.product.4000255536.html"
      ],
      "attributes": {
        "image": [
          "https://bfasset.costco-static.com/U447IH35/as/tbt5jpqzmwpq29h87hsnvsc7/5644001-894__1",
          "https://bfasset.costco-static.com/U447IH35/as/tbt5jpqzmwpq29h87hsnvsc7/5644001-894__2"
        ],
        "formatted_title": "Frigidaire 36 in 25.6 cu ft. Stainless Steel Side-by-Side Refrigerator",
        "brand_name": "Frigidaire",
        "key_features": [
          "EvenTemp™ Cooling System",
          "Fresh storage crispers",
          "Large capacity with flexible organization"
        ]
      }
    }
  ]
}
Products will only appear in this feed once their status is READY. Use the status field to filter for products that have been fully enriched.