Words
Scrabble / WWF tile score API
Compute the Scrabble (and Words-With-Friends-compatible) tile score for a word with a per-letter point breakdown and the 7-tile +50 bingo bonus. Pure, no network. Answers 'how many points is quartz worth?', 'does this play earn a bingo bonus?'.
Price$0.01per request
MethodPOST
Route/v1/words/scrabble-score
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache604800s public
wordsscrabblescorewordgametilesbingopurelexical
API URL
Integration docshttps://x402.hexl.dev/v1/words/scrabble-scoreExample request
{
"word": "quartz"
}Example response
{
"word": "quartz",
"score": 24,
"tiles": [
{
"letter": "q",
"points": 10
},
{
"letter": "u",
"points": 1
},
{
"letter": "a",
"points": 1
},
{
"letter": "r",
"points": 1
},
{
"letter": "t",
"points": 1
},
{
"letter": "z",
"points": 10
}
],
"bingo": false,
"scoreWithBingo": 24
}Input schema
{
"type": "object",
"required": [
"word"
],
"properties": {
"word": {
"type": "string"
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}