> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dubformer.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Project

> Retrieve information about a specific project

## Path Parameters

<ParamField path="projectId" type="string" required>
  The unique identifier of the project to retrieve.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique project identifier.
</ResponseField>

<ResponseField name="name" type="string">
  Name of the project.
</ResponseField>

<ResponseField name="status" type="string">
  Current status of the project.
</ResponseField>

<ResponseField name="translationGlossary" type="string | null">
  ID of the translation glossary, if any.
</ResponseField>

<ResponseField name="voicesGlossary" type="string | null">
  ID of the voices glossary, if any.
</ResponseField>

<ResponseField name="remark" type="string | null">
  Project remarks, if any.
</ResponseField>

<ResponseField name="clientName" type="string | null">
  Client name, if specified.
</ResponseField>

<ResponseField name="projectUrl" type="string">
  URL to access the project in the web app.
</ResponseField>

<ResponseField name="createdAt" type="string">
  ISO 8601 timestamp when the project was created.
</ResponseField>

<ResponseField name="updatedAt" type="string">
  ISO 8601 timestamp when the project was last updated.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET \
    https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b \
    -H 'Authorization: Bearer YOUR_API_KEY'
  ```

  ```typescript TypeScript theme={null}
  import axios from 'axios';

  const projectId = 'proj_5f83a14b2ec1b';
  const response = await axios.get(
    `https://studio.dubformer.ai/api/v1/projects/${projectId}`,
    {
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY'
      }
    }
  );

  console.log(response.data);
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "proj_5f83a14b2ec1b",
    "name": "Marketing Campaign 2023",
    "status": "new",
    "translationGlossary": "gloss_5f83a14b2ec1b",
    "voicesGlossary": "voices_7c92e3a1f56d8",
    "remark": "Urgent project for Q4 launch",
    "clientName": "Acme Corp",
    "projectUrl": "https://studio.dubformer.ai/projects/proj_5f83a14b2ec1b",
    "createdAt": "2023-12-01T10:00:00.000Z",
    "updatedAt": "2023-12-01T15:30:00.000Z"
  }
  ```
</ResponseExample>

## Usage Notes

<Note>
  Use this endpoint to get basic information about a project. For detailed information about each video, use the Get Project Video endpoint.
</Note>
