Retrieve comprehensive details about a specific project, including associated documents and metadata. This endpoint provides more detailed information than the projects list endpoint.
cURL
JavaScript
Python
PHP
Go
Java
curl -X GET "https://api-integration.ollang.com/integration/project/60b8d6f1e1b9b1d8c6c0d8e1" \
-H "X-Api-Key: <your-api-key>"
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
Format : X-Api-Key: your-api-key-here
You can obtain your API key from your Ollang dashboard .
Path Parameters
The unique identifier of the project to retrieve. This should be a valid
MongoDB ObjectId that you have access to.
Response
The response contains detailed information about the requested project, including all associated documents.
Unique identifier of the project.
Name of the project as provided during upload.
Source language of the project using ISO 639-1 language codes (e.g., “en”,
“tr”, “fr”).
The date and time when the project was created in ISO 8601 format.
Identifier of the folder associated with the project for organization
purposes.
Array of documents associated with the project, including source files and generated content. Show Document Object Properties
Unique identifier of the document.
The creation date of the document in ISO 8601 format.
The last update date of the document in ISO 8601 format.
URL of the document for access or download.
Size of the document in bytes.
Storage URL of the document if different from the main URL.
Word count of the document, applicable to text documents.
Duration of the document if it is a media file, in seconds.
Source language of the document, typically in ISO 639-1 format.
URL of the waveform image if applicable to audio documents.
Identifier of the project this document is associated with.
Identifier of the order this document is associated with.
Identifier of the client who owns the document.
URL of the thumbnail image of the document.
Identifier of the folder where the document is stored.
Number of orders related to this project.
{
"id" : "60b8d6f1e1b9b1d8c6c0d8e1" ,
"name" : "Marketing Video Q4" ,
"sourceLanguage" : "en" ,
"createdAt" : "2024-01-15T10:30:45.511Z" ,
"folderId" : "60b8d6f1e1b9b1d8c6c0d8e2" ,
"projectDocs" : [
{
"id" : "60b8d6f1e1b9b1d8c6c0d8e3" ,
"createdAt" : "2024-01-15T10:30:45.511Z" ,
"updatedAt" : "2024-01-15T10:35:22.847Z" ,
"name" : "marketing_video_q4.mp4" ,
"url" : "https://storage.ollang.com/files/marketing_video_q4.mp4" ,
"type" : "source_video" ,
"size" : 157286400 ,
"duration" : 240 ,
"sourceLanguage" : "en" ,
"clientId" : "60b8d6f1e1b9b1d8c6c0d8e4" ,
"projectId" : "60b8d6f1e1b9b1d8c6c0d8e1" ,
"folderId" : "60b8d6f1e1b9b1d8c6c0d8e2" ,
"thumbnailUrl" : "https://storage.ollang.com/thumbnails/marketing_video_q4.jpg"
},
{
"id" : "60b8d6f1e1b9b1d8c6c0d8e5" ,
"createdAt" : "2024-01-15T10:32:18.211Z" ,
"updatedAt" : "2024-01-15T10:32:18.211Z" ,
"name" : "marketing_video_waveform.png" ,
"url" : "https://storage.ollang.com/waveforms/marketing_video_waveform.png" ,
"type" : "created_waveform" ,
"size" : 524288 ,
"clientId" : "60b8d6f1e1b9b1d8c6c0d8e4" ,
"projectId" : "60b8d6f1e1b9b1d8c6c0d8e1" ,
"folderId" : "60b8d6f1e1b9b1d8c6c0d8e2"
}
],
"ordersCount" : 3
}