resolve_product
A fuzzy product name to a typed product object, synchronously. Plinth searches, picks the best matching product page, extracts it, and returns the same envelope as read_product.
POST https://onplinth.io/api/v1/resolve_product
{ "name": "sony wh-1000xm5 wireless headphones" }
→ {
"product": { "title": "...", "brand": "Sony", "price": { ... } },
"confidence": 0.74,
"method": "jsonld",
"cost_usd": 0.012
}product is null when nothing clears the confidence gate. Pass min_confidence to see lower-confidence candidates.
