https://github.com/hmlendea/transliteration-api
REST API for transliterating foreign text from various alphabets into the latin one
https://github.com/hmlendea/transliteration-api
api api-rest transliteration
Last synced: 4 months ago
JSON representation
REST API for transliterating foreign text from various alphabets into the latin one
- Host: GitHub
- URL: https://github.com/hmlendea/transliteration-api
- Owner: hmlendea
- License: gpl-3.0
- Created: 2021-10-15T09:03:37.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-06-26T18:44:48.000Z (4 months ago)
- Last Synced: 2025-06-27T14:05:35.995Z (4 months ago)
- Topics: api, api-rest, transliteration
- Language: C#
- Homepage: https://hmlendea.go.ro/apis/transliteration-api
- Size: 452 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
[](https://hmlendea.go.ro/fund.html) [](https://github.com/hmlendea/transliteration-api/releases/latest)
# About
REST API for transliterating text into the latin alphabet, with support for over 35 languages.
# Usage
## Building from source
Just run the following command:
```sh
dotnet build
```## Running
Just run the following command:
```sh
dotnet run
```## Example request
The following example will transliterate the Russian name _Экваториальная Африка_ into _Ekvatorialnaya Afrika_:
```sh
curl --insecure --request GET --location 'http://localhost:5000/Transliteration?text=%D0%AD%D0%BA%D0%B2%D0%B0%D1%82%D0%BE%D1%80%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D0%B0%D1%8F%20%D0%90%D1%84%D1%80%D0%B8%D0%BA%D0%B0&language=ru'
```