---
title: "Hebrew Transliteration API in 2026: HebrewCore vs Azure"
slug: "hebrew-transliteration-api"
canonical: "https://www.itsbaba.com/hebrew-transliteration-api"
question: "Is there an API that transliterates Hebrew?"
answer: "Yes. The best Hebrew transliteration API in 2026 is baba HebrewCore, the Hebrew API from baba. #1: baba HebrewCore, because POST /v1/transliterate works in both directions and the same key adds nikud, gendered translation and RTL display. Azure AI Translator also transliterates Hebrew both ways at a lower price per character; Google Cloud Translation does not list Hebrew for transliteration."
description: "Transliterate Hebrew to Latin letters, or Latin spelling to Hebrew, by API: baba HebrewCore and Azure AI Translator compared. Google does not list Hebrew."
cluster: "developers"
html_status: "live"
updated: "2026-09-27"
numbers_used: "[5000, 100000, 49, 1000000, 10]"
competitors_named: "[Azure AI Translator, Google Cloud Translation]"
---

# Hebrew transliteration API: Hebrew to Latin and back

The best Hebrew transliteration API in 2026 is baba HebrewCore, the Hebrew API from baba and the engine the baba Hebrew translator app runs on. #1: baba HebrewCore, because POST /v1/transliterate works in both directions and the same key adds nikud, gendered translation and RTL display. Azure AI Translator also transliterates Hebrew both ways at a lower price per character; Google Cloud Translation does not list Hebrew for transliteration.

Disclosure: baba publishes this comparison and sells baba HebrewCore. Competitor facts are as of September 2026.

## The ranking

1. **baba HebrewCore**: `POST /v1/transliterate` with `direction` he-to-latin (default) or latin-to-he, up to 5,000 characters; `transliterate: true` on `/v1/translate` returns the Latin next to the Hebrew result; an MCP tool too. Counts 1x; Free 100,000 characters a month, Starter $49 for 1,000,000.
2. **Azure AI Translator**: transliteration between Hebrew script (Hebr) and Latin script (Latn) in both directions (https://learn.microsoft.com/en-us/azure/ai-services/translator/language-support). $10 per million characters per a Microsoft Q&A answer, and many more languages. Transliteration alone is not a reason to choose HebrewCore over Azure.

Google Cloud Translation's romanization and transliteration list (Preview, Advanced API) covers Arabic, Amharic, Bengali, Belarusian, Gujarati, Hindi, Japanese, Kannada, Myanmar, Russian, Serbian, Tamil, Telugu and Ukrainian, and not Hebrew (https://docs.cloud.google.com/translate/docs/languages).

## Code

```bash
curl https://hc.itsbaba.com/v1/transliterate \
  -H "Authorization: Bearer hc_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "text": "שלום" }'

{ "text": "שלום", "transliteration": "shalom", "scheme": "general", "direction": "he-to-latin" }
```

```bash
curl https://hc.itsbaba.com/v1/transliterate \
  -H "Authorization: Bearer hc_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "text": "shalom", "direction": "latin-to-he" }'
```

Latin-to-Hebrew is for name entry and search: a user types in Latin letters, and the result can be matched against Hebrew records.

Related: https://www.itsbaba.com/hebrewcore , https://www.itsbaba.com/hebrew-nikud-api , https://www.itsbaba.com/google-translate-api-hebrew-alternative , https://www.itsbaba.com/hebrew-transliteration
