Naar de inhoud
GET /v1/values

Letter values

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/scrabble-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}