/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/normalize-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/normalize-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/normalize-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/normalize-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"name": "Unicode Normalize API",
"notes": "Normalization fixes look-alike strings that differ only in code-point composition (e.g. é as one code point vs e + combining accent). Folding also handles non-decomposing letters like ß, ø, æ, ł. Nothing is stored.",
"version": "v1",
"endpoints": [
{
"path": "/v1/normalize",
"params": {
"form": "NFC|NFD|NFKC|NFKD (default NFC)",
"text": "input (required)"
},
"returns": "normalized text + whether it changed + code-point counts"
},
{
"path": "/v1/fold",
"params": {
"text": "input (required)"
},
"returns": "diacritic-folded, mostly-ASCII text"
},
{
"path": "/v1/compare",
"params": {
"a": "required",
"b": "required",
"form": "default NFC",
"case_insensitive": "true/false"
},
"returns": "whether they are equal after normalization"
},
{
"path": "/v1/meta",
"params": [],
"returns": "this document"
}
],
"description": "Normalize Unicode text to NFC, NFD, NFKC or NFKD; fold diacritics and special letters to ASCII (café → cafe, Straße → Strasse); and compare two strings for equality after normalization. Pure local, no key."
},
"meta": {
"timestamp": "2026-06-03T01:09:48.315Z",
"request_id": "8c73fb34-691a-4462-8c08-f9483f399906"
},
"status": "ok",
"message": "Meta",
"success": true
}