Skip to main content
GET
/
integration
/
orders
/
{orderId}
/
export-xlsx
curl -X GET "https://api-integration.ollang.com/integration/orders/60b8d6f1e1b9b1d8c6c0d8e1/export-xlsx" \
  -H "X-Api-Key: <your-api-key>" \
  --output order_export.xlsx
Binary XLSX file (spreadsheet with segment data)
Returns an XLSX spreadsheet containing segment data (timecodes, source transcription, translated text) for the given order. The target language is resolved automatically from the order. The spreadsheet contains the following columns:
ColumnDescription
SR NOSequential row number
TCRTimecode (start timestamp)
SPEAKERSpeaker name
DIALOGUESSource transcription text
Target LanguageTranslated text (column header is the target language code)
curl -X GET "https://api-integration.ollang.com/integration/orders/60b8d6f1e1b9b1d8c6c0d8e1/export-xlsx" \
  -H "X-Api-Key: <your-api-key>" \
  --output order_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

Path Parameters

orderId
string
required
The unique identifier of the order to 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="{OrderName}_{targetLanguage}.xlsx"
Binary XLSX file (spreadsheet with segment data)