curl -X POST "https://api-integration.ollang.com/integration/memories" \
-H "X-Api-Key: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"title": "Product documentation EN→FR"
}'
const response = await fetch(
"https://api-integration.ollang.com/integration/memories",
{
method: "POST",
headers: {
"X-Api-Key": "<your-api-key>",
"Content-Type": "application/json",
},
body: JSON.stringify({
title: "Product documentation EN→FR",
}),
}
);
const memory = await response.json();
import requests
data = {"title": "Product documentation EN→FR"}
headers = {
"X-Api-Key": "<your-api-key>",
"Content-Type": "application/json",
}
response = requests.post(
"https://api-integration.ollang.com/integration/memories",
json=data,
headers=headers,
)
memory = response.json()
{
"id": "507f1f77bcf86cd799439011",
"title": "Product documentation EN→FR",
"memoryItemsCount": 0,
"createdAt": "2026-08-11T09:15:00.000Z",
"updatedAt": "2026-08-11T09:15:00.000Z"
}
{
"statusCode": 403,
"message": "Translation Memory feature is not available in your current plan. Please upgrade to access this feature."
}
{
"error": "Unauthorized",
"message": "Invalid or missing API key"
}
Ollang API Reference
Create Memory
Create a new translation memory for your account
POST
/
integration
/
memories
curl -X POST "https://api-integration.ollang.com/integration/memories" \
-H "X-Api-Key: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"title": "Product documentation EN→FR"
}'
const response = await fetch(
"https://api-integration.ollang.com/integration/memories",
{
method: "POST",
headers: {
"X-Api-Key": "<your-api-key>",
"Content-Type": "application/json",
},
body: JSON.stringify({
title: "Product documentation EN→FR",
}),
}
);
const memory = await response.json();
import requests
data = {"title": "Product documentation EN→FR"}
headers = {
"X-Api-Key": "<your-api-key>",
"Content-Type": "application/json",
}
response = requests.post(
"https://api-integration.ollang.com/integration/memories",
json=data,
headers=headers,
)
memory = response.json()
{
"id": "507f1f77bcf86cd799439011",
"title": "Product documentation EN→FR",
"memoryItemsCount": 0,
"createdAt": "2026-08-11T09:15:00.000Z",
"updatedAt": "2026-08-11T09:15:00.000Z"
}
{
"statusCode": 403,
"message": "Translation Memory feature is not available in your current plan. Please upgrade to access this feature."
}
{
"error": "Unauthorized",
"message": "Invalid or missing API key"
}
Create an empty translation memory. Fill it with the Import Memory Items endpoint, then pass its id as
selectedMemories when creating an order.
curl -X POST "https://api-integration.ollang.com/integration/memories" \
-H "X-Api-Key: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"title": "Product documentation EN→FR"
}'
const response = await fetch(
"https://api-integration.ollang.com/integration/memories",
{
method: "POST",
headers: {
"X-Api-Key": "<your-api-key>",
"Content-Type": "application/json",
},
body: JSON.stringify({
title: "Product documentation EN→FR",
}),
}
);
const memory = await response.json();
import requests
data = {"title": "Product documentation EN→FR"}
headers = {
"X-Api-Key": "<your-api-key>",
"Content-Type": "application/json",
}
response = requests.post(
"https://api-integration.ollang.com/integration/memories",
json=data,
headers=headers,
)
memory = response.json()
Authorizations
This endpoint requires API key authentication.- Header name:
X-Api-Key - Header value: Your API key from the Ollang dashboard
Body Parameters
string
required
Human-readable name of the translation memory.
Response
Returns the created translation memory object.string
Unique identifier of the translation memory.
string
Human-readable name of the translation memory.
number
Number of translation units stored in the memory. Always
0 for a newly
created memory.string
Creation timestamp (ISO 8601).
string
Last update timestamp (ISO 8601).
{
"id": "507f1f77bcf86cd799439011",
"title": "Product documentation EN→FR",
"memoryItemsCount": 0,
"createdAt": "2026-08-11T09:15:00.000Z",
"updatedAt": "2026-08-11T09:15:00.000Z"
}
{
"statusCode": 403,
"message": "Translation Memory feature is not available in your current plan. Please upgrade to access this feature."
}
{
"error": "Unauthorized",
"message": "Invalid or missing API key"
}
Was this page helpful?