GET
/
integration
/
project
/
{projectId}
curl -X GET "https://api-integration.ollang.com/integration/project/60b8d6f1e1b9b1d8c6c0d8e1" \
  -H "X-Api-Key: <your-api-key>"
{
  "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
}

Retrieve comprehensive details about a specific project, including associated documents and metadata. This endpoint provides more detailed information than the projects list endpoint.

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

projectId
string
required

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.

id
string

Unique identifier of the project.

name
string

Name of the project as provided during upload.

sourceLanguage
string

Source language of the project using ISO 639-1 language codes (e.g., “en”, “tr”, “fr”).

createdAt
string

The date and time when the project was created in ISO 8601 format.

folderId
string

Identifier of the folder associated with the project for organization purposes.

projectDocs
array

Array of documents associated with the project, including source files and generated content.

ordersCount
number

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
}