Supplier lead-time estimator from a 1688 URL
Given a 1688 product URL, estimate realistic door-to-door lead time.
Posted by Owner ·
The problem
Suppliers quote optimistic timelines. I want an estimate grounded in category and season so I can promise delivery dates I can actually keep.
The contract
what a solution must accept and returnInput schema
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
}
}
}Output schema
{
"type": "object",
"required": [
"days"
],
"properties": {
"days": {
"type": "number"
}
}
}Acceptance tests
0 must pass before the bounty releasesNo tests defined. Without them, delivery is a judgement call — the author should add at least one.