Localazy

Localazy is a localization and translation management platform built for developers. Its REST API at https://api.localazy.com lets teams import and upload source content, export and download translated files, list and manage files, languages, and projects, and drive AI-assisted translation - all authenticated with project, translation, or organization tokens.

5 APIs 0 Features
LocalizationTranslationInternationalizationi18nL10nTranslation Management

APIs

Localazy Import / Upload API

Imports and uploads source and translation strings into a Localazy project from any supported file format, and lists the available import file formats and their capabilities.

Localazy Export API

Exports translated content by downloading a file in a specific language, returning the localized file contents ready for use in an application.

Localazy Files API

Lists the files in a project and reads file content as keys and translations for a given language, with pagination and metadata options.

Localazy Languages API

Retrieves the languages configured on a project, including the source language and per-language translation statistics, via the projects endpoint with the languages parameter.

Localazy Projects (Management) API

Lists projects accessible to a token and creates new projects under an organization, returning project identifiers, metadata, type, tone, and feature availability.

Collections

Pricing Plans

Localazy Plans Pricing

5 plans

PLANS

Rate Limits

Localazy Rate Limits

5 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Localazy API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Projects
    type: folder
  items:
  - info:
      name: List projects
      type: http
    http:
      method: GET
      url: https://api.localazy.com/projects?organization=true&languages=true
    docs: Returns the projects accessible to the supplied token, optionally including organization and language information.
  - info:
      name: Create a project
      type: http
    http:
      method: POST
      url: https://api.localazy.com/projects
      body:
        type: json
        data: "{\n  \"name\": \"My Project\",\n  \"sourceLanguage\": \"en\",\n  \"type\": \"restricted\"\n}"
    docs: Creates a new project under an organization. Requires an organization token.
- info:
    name: Import
    type: folder
  items:
  - info:
      name: Import content to a project
      type: http
    http:
      method: POST
      url: https://api.localazy.com/projects/{{projectId}}/import
      body:
        type: json
        data: "{\n  \"files\": [\n    {\n      \"name\": \"strings.json\",\n      \"content\": {\n        \"type\": \"json\"\
          ,\n        \"en\": { \"hello\": \"Hello\" }\n      }\n    }\n  ]\n}"
    docs: Imports and uploads source and translation strings into the project from one or more files.
  - info:
      name: List available import file formats
      type: http
    http:
      method: GET
      url: https://api.localazy.com/import/formats
    docs: Returns the supported file types for importing strings and their capabilities.
- info:
    name: Files
    type: folder
  items:
  - info:
      name: List files in a project
      type: http
    http:
      method: GET
      url: https://api.localazy.com/projects/{{projectId}}/files
    docs: Returns the set of files in the project.
  - info:
      name: List file content (keys)
      type: http
    http:
      method: GET
      url: https://api.localazy.com/projects/{{projectId}}/files/{{fileId}}/keys/{{lang}}?limit=1000
    docs: Returns the keys and translations for a file in a specific language, with cursor-based pagination.
- info:
    name: Export
    type: folder
  items:
  - info:
      name: Download (export) a file in a language
      type: http
    http:
      method: GET
      url: https://api.localazy.com/projects/{{projectId}}/files/{{fileId}}/download/{{lang}}
    docs: Exports the translated file for the given language and returns the raw file contents.