Skip to main content
POST
/
integration
/
folder
/
export-xlsx
curl -X POST "https://api-integration.ollang.com/integration/folder/export-xlsx" \
  -H "X-Api-Key: <your-api-key>" \
  -H "Content-Type: application/json" \
  -d '{
    "folderIds": ["60b8d6f1e1b9b1d8c6c0d8e1"],
    "targetLanguages": ["tr", "en"]
  }' \
  --output bulk_export.xlsx
Binary XLSX file (multi-sheet spreadsheet with segment data)
Returns an XLSX spreadsheet with one sheet per order/language combination for all orders in the specified folders. Each sheet contains segment data (timecodes, source transcription, translated text). The spreadsheet contains the following columns per sheet:
ColumnDescription
SR NOSequential row number
TCRTimecode (start timestamp)
SPEAKERSpeaker name
DIALOGUESSource transcription text
Target LanguageTranslated text (column header is the target language code)
Sheet names follow the pattern {OrderName} - {targetLanguage} (max 31 characters).
curl -X POST "https://api-integration.ollang.com/integration/folder/export-xlsx" \
  -H "X-Api-Key: <your-api-key>" \
  -H "Content-Type: application/json" \
  -d '{
    "folderIds": ["60b8d6f1e1b9b1d8c6c0d8e1"],
    "targetLanguages": ["tr", "en"]
  }' \
  --output bulk_export.xlsx

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

Body Parameters

folderIds
string[]
required
Array of folder IDs containing the orders to export.
targetLanguages
string[]
required
Array of target language codes to include in the export.

Response

The response is a binary XLSX file download. The response headers include:
  • Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
  • Content-Disposition: attachment; filename="bulk_export_{date}.xlsx"
Binary XLSX file (multi-sheet spreadsheet with segment data)