API & playground
Try the API.
The REST API runs at https://api.interscript.org/v1. No account, no API key.
Send a POST request with a JSON body. Endpoints: /transliterate (one
conversion), /transliterate/batch (many), /systems (the 289-system
catalogue), /detect (which system explains a source–target pair),
and /infer (neural models — diacritization and grapheme-to-phoneme). Responses
allow cross-origin requests, so browser scripts can call the API directly.
curl -X POST 'https://api.interscript.org/v1/transliterate' \
-H 'Content-Type: application/json' \
-d '{"system": "bgnpcgn-ukr-Cyrl-Latn-2019", "input": "Антон"}'
# → {"system":"bgnpcgn-ukr-Cyrl-Latn-2019","input":"Антон","output":"Anton"}