Skip to main content
GET
https://backend.anglera.com
/
feed
/
price-feed
/
{sheet_id}
Fetch Price Feed
curl --request GET \
  --url https://backend.anglera.com/feed/price-feed/{sheet_id} \
  --header 'X-Anglera-API-Key: <api-key>'
{
  "sheet_id": "<string>",
  "total_products": 123,
  "products": [
    {
      "product_id": 123,
      "name": "<string>",
      "sku": "<string>",
      "product_status": "<string>",
      "price_report_data": {
        "status": "<string>",
        "last_updated": "<string>",
        "functions": [
          {}
        ],
        "smart_price_results": [
          {}
        ],
        "price_source_results": [
          {}
        ]
      }
    }
  ]
}
Returns price report data for all products in a sheet, including aggregated competitive pricing.

Request

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

Path Parameters

sheet_id
string
required
ID of the sheet to fetch price data from

Response

sheet_id
string
Sheet ID
total_products
number
Total number of products in the response
products
array
List of products with price report data
Example Response
{
  "sheet_id": "3910",
  "total_products": 2,
  "products": [
    {
      "product_id": 4727220,
      "name": "Bosch 18V Brushless Brad Nailer Kit",
      "sku": "GNH18V-18MB12-RT",
      "product_status": "READY",
      "price_report_data": {
        "status": "READY",
        "last_updated": "2025-10-07T17:04:29.346443+00:00",
        "functions": [
          {
            "fn": "min",
            "value": 293.99,
            "source": "ebay.com",
            "scraped_url": "https://www.ebay.com/itm/335844338050",
            "display_name": "Minimum Price"
          },
          {
            "fn": "max",
            "value": 349.99,
            "source": "cpopowertools.com",
            "scraped_url": "https://www.cpopowertools.com/...",
            "display_name": "Maximum Price"
          },
          {
            "fn": "avg",
            "value": 308.29,
            "source": null,
            "scraped_url": null,
            "display_name": "Average Price"
          },
          {
            "fn": "med",
            "value": 299.99,
            "source": "business.walmart.com",
            "scraped_url": "https://business.walmart.com/...",
            "display_name": "Median Price"
          }
        ],
        "smart_price_results": [
          {
            "price": 293.99,
            "currency": "USD",
            "timestamp": "2025-10-07T17:03:43.899303+00:00",
            "scraped_url": "https://www.ebay.com/itm/335844338050",
            "source_status": "SUCCESS",
            "price_source_name": "ebay.com",
            "price_source_base_url": "https://www.ebay.com/itm/335844338050"
          }
        ],
        "price_source_results": [
          {
            "price": null,
            "currency": "USD",
            "timestamp": "2025-10-07T17:01:37.174655+00:00",
            "scraped_url": null,
            "source_status": "NOT_FOUND",
            "price_source_name": "Toolup",
            "price_source_base_url": "https://toolup.com/"
          }
        ]
      }
    }
  ]
}

Price Report Data Structure

FieldDescription
functions[]Aggregated pricing metrics (min, max, avg, med)
smart_price_results[]Products found by Anglera’s smart source matching
price_source_results[]Results from specific competitor domains (NOT_FOUND if no match)