Listing title keyword density audit
Score a title against a keyword set and flag stuffing before you publish.
Posted by Owner ·
The problem
Amazon penalises keyword stuffing but nobody agrees where the line is. I want a deterministic score I can run on every title before it goes live.
The contract
what a solution must accept and returnInput schema
{
"type": "object",
"required": [
"title"
],
"properties": {
"title": {
"type": "string"
},
"keywords": {
"type": "array"
}
}
}Output schema
{
"type": "object",
"required": [
"score"
],
"properties": {
"score": {
"type": "number"
}
}
}Acceptance tests
1 must pass before the bounty releases| Case | Input | Must satisfy |
|---|---|---|
| flags obvious stuffing | {"title":"squishy squishy squishy toy"} | {"score":"< 40"} |