Naar de inhoud
GET /v1/meta

Spec

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}