Skip to content
@Langbly

Langbly Translator

Translation API for developers. Google Translate v2 compatible, 100+ languages, drop-in migration.

Langbly

Translation API — drop-in Google Translate v2 replacement, context-aware, 75% cheaper than Google Translate

PyPI npm Packagist Website Docs Postman Collection LinkedIn

Website · Documentation · Pricing · Compare · Get Free API Key


Langbly is a translation API that's a drop-in replacement for Google Translate v2. Same request format, same response shape. Switch in one PR. Higher quality translations at a fraction of the cost.

Why developers switch to Langbly

Google Translate DeepL Langbly
Price per 1M chars $20 $25 $5 (first 500K/mo free)
API compatibility Own format Google Translate v2
Translation quality Statistical Neural Context-aware
Free tier None 500K/mo 500K/mo, recurring
Locale formatting ✅ Automatic

Install

pip install langbly                    # Python
npm install langbly                    # JavaScript / TypeScript
composer require langbly/langbly-php   # PHP

Quick Start

from langbly import Langbly

client = Langbly(api_key="your-api-key")
result = client.translate("Hello world", target="nl")
print(result.text)  # "Hallo wereld"
import { Langbly } from "langbly";

const client = new Langbly({ apiKey: "your-api-key" });
const result = await client.translate("Hello world", { target: "nl" });
console.log(result.text); // "Hallo wereld"

Migrate from Google Translate in 2 minutes

Already using Google Translate v2? Just change the base URL:

# Before: https://translation.googleapis.com/language/translate/v2
# After:  https://api.langbly.com/language/translate/v2

curl -X POST https://api.langbly.com/language/translate/v2 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"q": "Hello world", "target": "nl"}'

→ Full migration guide: langbly.com/docs/migrate-google

SDKs & Resources

Repository Description Install
langbly-python Python SDK with async support, auto-retry, typed errors pip install langbly
langbly-js JS/TS SDK with native fetch, zero dependencies, TypeScript npm install langbly
langbly-php PHP SDK with Guzzle, auto-retry, typed exceptions composer require langbly/langbly-php
examples curl examples, migration guides, code samples

No code needed? Explore every endpoint in the Postman collection — imported straight from our OpenAPI spec, runnable in one click.

Integrations

Repository Description
n8n-nodes-langbly n8n community node - translate inside your automations, no code
translate GitHub Action - translate JSON locale files and Markdown docs in CI/CD
langbly_translator Drupal TMGMT translator plugin
langbly-for-translatepress TranslatePress engine for WordPress
langbly-for-loco-translate Loco Translate add-on for WordPress
strapi-provider-translate-langbly Translation provider for Strapi
omegat-plugin-langbly OmegaT CAT tool plugin

Features

  • Google Translate v2 compatible - same /language/translate/v2 endpoint
  • Context-aware - understands tone, idioms, and locale conventions
  • Auto-retry - exponential backoff with Retry-After support in both SDKs
  • Locale formatting - automatic decimal, date, and currency formatting per target language
  • Batch translation - translate multiple texts in a single request
  • Language detection - identify source language automatically
  • HTML support - translate HTML while preserving tags and attributes

Pricing

Pure pay-as-you-go, no tiers.

Plan Base price Included Additional usage
Pay-as-you-go $0 500K characters/month $5 per 1M characters
Enterprise Custom Custom limits Volume discounts, custom SLA

A payment method is required to activate the API; you are not charged unless you go over the included 500K characters/month.

Start free - add a payment method, first 500K characters/month included


Built by Jasper de Winter · langbly.com

Popular repositories Loading

  1. .github .github Public

    Langbly organization profile

  2. langbly-python langbly-python Public

    Official Python SDK for the Langbly translation API. Drop-in Google Translate v2 replacement, 81-90% cheaper.

    Python

  3. langbly-js langbly-js Public

    Official JavaScript/TypeScript SDK for the Langbly translation API. Drop-in Google Translate v2 replacement, 81-90% cheaper.

    TypeScript

  4. examples examples Public

    Code examples and migration guides for the Langbly translation API. Switch from Google Translate in minutes.

    Shell

  5. langbly-i18n-action langbly-i18n-action Public archive

    ⚠️ Archived. Use Langbly/translate instead. GitHub Action for i18n translation.

    TypeScript

  6. translate translate Public

    GitHub Action to translate JSON locale files and Markdown docs using the Langbly API. CI/CD translation automation.

    TypeScript

Repositories

Showing 10 of 13 repositories
  • .github Public

    Langbly organization profile

    Langbly/.github's past year of commit activity
    0 0 1 0 Updated Sep 2, 2026
  • n8n-nodes-langbly Public

    n8n community node for the Langbly translation API. Translate text to 100+ languages, Google Translate v2 compatible.

    Langbly/n8n-nodes-langbly's past year of commit activity
    TypeScript 0 MIT 0 0 0 Updated Sep 2, 2026
  • translate Public

    GitHub Action to translate JSON locale files and Markdown docs using the Langbly API. CI/CD translation automation.

    Langbly/translate's past year of commit activity
    TypeScript 0 MIT 0 0 0 Updated Jul 26, 2026
  • omegat-plugin-langbly Public

    OmegaT machine translation plugin for the Langbly API

    Langbly/omegat-plugin-langbly's past year of commit activity
    Java 0 GPL-3.0 0 0 0 Updated Apr 6, 2026
  • langbly_translator Public

    Drupal TMGMT translator plugin for Langbly. Context-aware machine translation, Google Translate v2 compatible, 100+ languages.

    Langbly/langbly_translator's past year of commit activity
    PHP 0 0 0 0 Updated Feb 22, 2026
  • langbly-for-translatepress Public

    Langbly Machine Translation engine for TranslatePress. Context-aware translations for WordPress, 100+ languages.

    Langbly/langbly-for-translatepress's past year of commit activity
    PHP 0 GPL-2.0 0 0 0 Updated Feb 19, 2026
  • langbly-for-loco-translate Public

    Langbly Machine Translation add-on for Loco Translate. Context-aware translations for WordPress, 100+ languages.

    Langbly/langbly-for-loco-translate's past year of commit activity
    PHP 0 GPL-2.0 0 0 0 Updated Feb 19, 2026
  • langbly-python Public

    Official Python SDK for the Langbly translation API. Drop-in Google Translate v2 replacement, 81-90% cheaper.

    Langbly/langbly-python's past year of commit activity
    Python 0 MIT 0 0 0 Updated Feb 19, 2026
  • langbly-js Public

    Official JavaScript/TypeScript SDK for the Langbly translation API. Drop-in Google Translate v2 replacement, 81-90% cheaper.

    Langbly/langbly-js's past year of commit activity
    TypeScript 0 MIT 0 0 0 Updated Feb 19, 2026
  • langbly-php Public

    Official PHP SDK for the Langbly Translation API. Drop-in replacement for Google Translate v2.

    Langbly/langbly-php's past year of commit activity
    PHP 0 MIT 0 0 0 Updated Feb 19, 2026

People

This organization has no public members. You must be a member to see who’s a part of this organization.