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.
Sub-Skills Reference
The Ollang master skill routes to the right sub-skill based on what you ask your agent. Here’s every sub-skill, when the agent uses it, and the API surface it covers.Quick Reference
| Sub-Skill | When the Agent Uses It |
|---|---|
ollang-health | Check if the Ollang API is up and reachable |
ollang-upload | Upload a video, audio, document, or VTT subtitle file |
ollang-order-create | Create a translation, CC, subtitle, or dubbing order |
ollang-order-get | Check the status or details of a specific order |
ollang-orders-list | List, search, or filter orders |
ollang-order-cancel | Cancel an active order |
ollang-order-rerun | Rerun/regenerate a completed order with latest AI models |
ollang-revision | Report issues or manage revisions on a completed order |
ollang-human-review | Request or cancel professional linguist review |
ollang-qc-eval | Run an AI-powered quality control evaluation |
ollang-project | List or inspect projects |
ollang-folder | List or find folders |
ollang-health
Pings the Ollang API to verify it’s online. No API key required. Example prompt:GET /health
ollang-upload
Uploads a source file to Ollang. Supports video, audio, documents, spreadsheets, and VTT subtitle files. Returns aprojectId used to create orders.
Example prompt:
POST /integration/upload/direct— Direct file uploadPOST /integration/upload/vtt— VTT subtitle upload
ollang-order-create
Creates one or more translation orders for a project. Supports order types: closed captions, subtitles, document translation, AI dubbing, and studio dubbing. Example prompt:POST /integration/orders/create
Related API docs: Create Order, Order Types
ollang-order-get
Retrieves full details of a specific order by ID, including status, languages, documents, and QC results. Example prompt:GET /integration/orders/{orderId}
Related API docs: Get Order by ID
ollang-orders-list
Lists orders with optional filtering by type, name, date range, and pagination. Example prompt:GET /integration/orders
Related API docs: Get Orders
ollang-order-cancel
Cancels an active order that hasn’t completed yet. Example prompt:POST /integration/orders/cancel/{orderId}
Related API docs: Cancel Order
ollang-order-rerun
Reruns a completed order to regenerate the translation using the latest AI models. Example prompt:POST /integration/orders/{orderId}/rerun
Related API docs: Rerun Order
ollang-revision
Creates, lists, or deletes revision requests on a completed order. Use this to flag subtitle timing issues, mistranslations, or other problems. Example prompt:POST /integration/revision/{orderId}— Create a revisionGET /integration/revision/{orderId}— List all revisionsDELETE /integration/revision/{orderId}/{revId}— Delete a revision
ollang-human-review
Requests or cancels a professional linguist review for an order. Human review upgrades AI-generated output with expert review. Example prompt:POST /integration/orders/{orderId}/human-review— Request reviewPOST /integration/orders/{orderId}/cancel-human-review— Cancel review
ollang-qc-eval
Runs an AI-powered quality control evaluation on a completed order. Returns scores for accuracy, fluency, tone, and cultural fit, plus segment-level analysis. Example prompt:POST /integration/orders/{orderId}/qc
Related API docs: Run QC Evaluation
ollang-project
Lists all projects or retrieves details for a specific project by ID. Example prompt:GET /integration/project— List all projectsGET /integration/project/{projectId}— Get project details
ollang-folder
Lists and searches Ollang folders for organizing projects. Example prompt:GET /integration/folder
Related API docs: Retrieve All Folders