read_product
Resolve one reference (URL or GTIN) into a typed product object.
Request
POST /v1/read_product
{ "url": "https://store.com/p/123" }
// or
{ "gtin": "00194253433767" }Response shape (Schema.org Product superset)
{
"@type": "Product",
"canonical": { "gtin","mpn","brand","model" },
"title", "description", "category",
"attributes": { /* normalized */ },
"images": ["..."],
"price": { "band": {low,high,currency}, "as_of", "n_sources" },
"availability", "reviews_summary", "variants": [],
"source": { "method": "jsonld|opengraph|render|barcode|cache", "urls": [...] },
"confidence": 0.0-1.0,
"cost_usd": 0.012
}