commerce $0.0003 / call
GTIN Validate
Validate GTIN-8, UPC/GTIN-12, EAN/GTIN-13 and GTIN-14 check digits; no product lookup.
commerce.gtin-validatecommerce.variant-compare · v1.0.0
Compare requested product attributes with an offered variant and list missing or mismatched fields.
{
"requested": {
"color": "blue",
"size": "M"
},
"offered": {
"color": "blue",
"size": "L",
"stock": true
}
}{
"matches": false,
"missing": [],
"mismatched": [
{
"attribute": "size",
"requested": "M",
"offered": "L"
}
],
"extra": [
"stock"
],
"scope": "Exact structural attribute comparison; no inferred size, color or device compatibility."
}Generated from the actual handler using this example input; this is a preview, not a paid API call. Paid responses wrap the result with a receipt and recovery expiry.
Add credits in the workspace and keep your API key in private environment storage. Use the same request ID and exact body to recover a lost response within ten minutes.
// Node.js 22+. Read the key from your private environment.
const requestId = Date.now() + '_' + crypto.randomUUID();
const response = await fetch('https://agent-utilities.agent-utilities.workers.dev/v1/tools/commerce.variant-compare', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + process.env.AGENT_UTILITIES_API_KEY,
'Idempotency-Key': requestId
},
body: JSON.stringify({
"requested": {
"color": "blue",
"size": "M"
},
"offered": {
"color": "blue",
"size": "L",
"stock": true
}
})
});
const data = await response.json();
if (!response.ok) throw new Error(data.error?.message ?? 'Request failed');
console.log(data);
// On response loss, retry this SAME requestId, tool and body.
// Do not rerun the line that generates requestId for a retry.{
"type": "object",
"properties": {
"requested": {
"type": "object",
"maxProperties": 100
},
"offered": {
"type": "object",
"maxProperties": 100
}
},
"required": [
"requested",
"offered"
],
"additionalProperties": false
}{
"type": "object",
"properties": {
"matches": {
"type": "boolean"
},
"missing": {
"type": "array",
"items": {
"type": "string"
}
},
"mismatched": {
"type": "array",
"items": {
"type": "object",
"properties": {
"attribute": {
"type": "string"
},
"requested": {},
"offered": {}
},
"required": [
"attribute",
"requested",
"offered"
],
"additionalProperties": false
}
},
"extra": {
"type": "array",
"items": {
"type": "string"
}
},
"scope": {
"type": "string"
}
},
"required": [
"matches",
"missing",
"mismatched",
"extra",
"scope"
],
"additionalProperties": false
}Prices are experimental. The service currently allows 1,000 new calls per day across all accounts. Failed operations return reserved credits. Successful results are encrypted for ten-minute retry recovery. Review data handling and service limits.
commerce $0.0003 / call
Validate GTIN-8, UPC/GTIN-12, EAN/GTIN-13 and GTIN-14 check digits; no product lookup.
commerce.gtin-validatecommerce $0.0008 / call
Choose the lowest-cost whole-pack combination for a required count with exact prices and explicit pack limits; up to 20 interchangeable offers.
commerce.pack-plancommerce $0.0003 / call
Normalize up to 50 displayed prices with explicit locale, currency and decimal scale; exact amounts, strict grouping and per-price errors.
commerce.money-parse