/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}