/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/scrabble-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scrabble-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scrabble-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"name": "Scrabble API",
"notes": "Scores are tile face values only — double/triple letter and word squares and the 50-point bingo bonus are not applied. English letter distributions. Nothing is stored.",
"version": "v1",
"endpoints": [
{
"path": "/v1/score",
"params": {
"word": "a word (required)",
"ruleset": "scrabble|wwf (default scrabble)"
},
"returns": "the total tile score and per-letter values"
},
{
"path": "/v1/values",
"params": {
"ruleset": "scrabble|wwf (default scrabble)"
},
"returns": "the value of every letter"
},
{
"path": "/v1/meta",
"params": [],
"returns": "this document"
}
],
"description": "Score a word by its letter tiles for Scrabble or Words With Friends — the raw face value of the tiles (board multipliers not applied). Get the score for a word and the value of every letter. Blank tiles (? _ *) score zero. Pure local, no key."
},
"meta": {
"timestamp": "2026-06-03T01:09:41.580Z",
"request_id": "985d3c77-b22d-45b6-abac-576f40e0bdd2"
},
"status": "ok",
"message": "Meta",
"success": true
}