/v1/values
Letter values
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/values" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scrabble-api/v1/values", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scrabble-api/v1/values");
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/values",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"ruleset": "scrabble",
"by_points": {
"1": [
"A",
"E",
"I",
"L",
"N",
"O",
"R",
"S",
"T",
"U"
],
"2": [
"D",
"G"
],
"3": [
"B",
"C",
"M",
"P"
],
"4": [
"F",
"H",
"V",
"W",
"Y"
],
"5": [
"K"
],
"8": [
"J",
"X"
],
"10": [
"Q",
"Z"
]
},
"blank_tile": 0,
"letter_values": {
"A": 1,
"B": 3,
"C": 3,
"D": 2,
"E": 1,
"F": 4,
"G": 2,
"H": 4,
"I": 1,
"J": 8,
"K": 5,
"L": 1,
"M": 3,
"N": 1,
"O": 1,
"P": 3,
"Q": 10,
"R": 1,
"S": 1,
"T": 1,
"U": 1,
"V": 4,
"W": 4,
"X": 8,
"Y": 4,
"Z": 10
}
},
"meta": {
"timestamp": "2026-06-03T01:09:41.486Z",
"request_id": "8b9b44f4-8637-4f6b-aa90-84e8829cd343"
},
"status": "ok",
"message": "Letter values",
"success": true
}