Ollang API Reference
Export Content
Export your content translations as JSON, filtered by language, tags, and orders
GET
Export all content translations for your account. You can filter by target language(s), tag(s), and order ID(s). Single-language exports return a flat key-value map; multi-language exports return a map grouped by language code.Documentation Index
Fetch the complete documentation index at: https://api-docs.ollang.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
This endpoint requires API key authentication. Include your API key in the request header:- Header name:
X-Api-Key - Header value: Your API key from the Ollang dashboard
Query Parameters
Filter by a single target language code (e.g.,
tr). Use targetLanguages
for multi-language export. Do not send both targetLanguage and
targetLanguages in the same request — pick one.Filter by one or more target language codes. When multiple languages are
provided, the response is grouped by language. Two syntaxes are accepted
and treated equivalently:
- Bracket form:
?targetLanguages[]=tr&targetLanguages[]=en - Repeated-key form:
?targetLanguages=tr&targetLanguages=en
?targetLanguages=tr) is also accepted and is coerced into
a one-element array.Filter by a single tag.
Filter by one or more tags. Returns content terms that have at least one of
the specified tags. Accepts both
?tags[]=ui&tags[]=marketing and
?tags=ui&tags=marketing.Filter by one or more order IDs. Only content terms associated with the
specified orders will be included. Accepts both
?orderIds[]=a&orderIds[]=b
and ?orderIds=a&orderIds=b.