/v1/score
Score a word
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/scrabble-api/v1/score" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scrabble-api/v1/score", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scrabble-api/v1/score");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/scrabble-api/v1/score",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"word": "QUIZ",
"score": 22,
"tiles": 4,
"letters": [
{
"value": 10,
"letter": "Q"
},
{
"value": 1,
"letter": "U"
},
{
"value": 1,
"letter": "I"
},
{
"value": 10,
"letter": "Z"
}
],
"ruleset": "scrabble"
},
"meta": {
"timestamp": "2026-06-03T01:09:41.393Z",
"request_id": "d32f714d-871e-459f-bfc6-31a00c5f7040"
},
"status": "ok",
"message": "Score a word",
"success": true
}