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

# Get Project Details

> Retrieve detailed information about a specific project



## OpenAPI

````yaml /openapi/phrase-studio.json get /v1/projects/{id}
openapi: 3.0.3
info:
  title: Studio API
  description: >-
    API for creating projects and reading transcription, translation, and
    dubbing results.
  version: 1.0.0
servers:
  - url: https://api.studio.us.phrase.com
    description: Production US Environment
  - url: https://api.studio.eu.phrase.com
    description: Production EU Environment
security: []
tags:
  - name: Projects
    description: Manage transcription, translation, and dubbing projects
  - name: Recordings
    description: Access recording status and output data
  - name: Subtitle Profiles
    description: Manage subtitle formatting profiles
  - name: Pronunciations
    description: Manage custom pronunciation rules
  - name: Glossaries
    description: Manage translation glossaries
  - name: Insights
    description: Manage AI-powered insight prompts
  - name: Safe Communications
    description: Access safe communication evaluation templates
paths:
  /v1/projects/{id}:
    get:
      tags:
        - Projects
      summary: Get Project Details
      description: Retrieve detailed information about a specific project
      operationId: getProjectDetails
      parameters:
        - name: id
          in: path
          required: true
          description: Project ID
          schema:
            type: string
      responses:
        '200':
          description: Project details retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Project ID
                    example: 01jzmvc20cjq5hj5saa96ttp2x
                  name:
                    type: string
                    description: Project name
                    example: Meeting Recording
                  firstRecordingId:
                    type: string
                    description: First recording ID
                  sourceLanguage:
                    type: string
                    description: Source language code
                  subtitleProfileId:
                    type: string
                    format: uuid
                    description: Subtitle profile ID
                  mediaType:
                    type: string
                    enum:
                      - AUDIO
                      - VIDEO
                      - AUDIO_VIDEO
                    description: Project media type
                  duration:
                    type: number
                    description: Total duration in seconds
                  fileCount:
                    type: number
                    description: Number of files in project
                  owner:
                    type: string
                    description: Owner user or team name
                  accountId:
                    type: string
                    description: Account ID
                  archived:
                    type: boolean
                    description: Whether project is archived
                  status:
                    type: string
                    enum:
                      - ARCHIVED
                      - PENDING
                      - IN_PROGRESS
                      - COMPLETED
                      - FAILED
                    description: Current project status
                    example: IN_PROGRESS
                  recordingTypes:
                    type: array
                    items:
                      type: string
                      enum:
                        - TRANSCRIPTION
                        - TRANSLATION
                        - DUBBING
                        - SUMMARY
                  createdAt:
                    type: string
                    format: date-time
                    description: Project creation timestamp
                  updatedAt:
                    type: string
                    format: date-time
                    description: Project last update timestamp
                  recordings:
                    type: array
                    description: Recordings within the project
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Recording ID
                        projectId:
                          type: string
                          description: Project ID
                        name:
                          type: string
                          description: Recording name
                        type:
                          type: string
                          description: File MIME type
                        extension:
                          type: string
                          description: File extension
                        sourceLanguage:
                          type: string
                          description: Source language code
                        translationLanguages:
                          type: array
                          items:
                            type: string
                          description: Target translation languages
                        dubbingLanguages:
                          type: array
                          items:
                            type: string
                          description: Target dubbing languages
                        summaryEnabled:
                          type: boolean
                          description: Whether summary is enabled
                        customAttributesEnabled:
                          type: boolean
                          description: Whether custom attributes are enabled
                        insightsEnabled:
                          type: boolean
                          description: Whether insights are enabled
                        safeCommunicationsEnabled:
                          type: boolean
                          description: Whether safe communications are enabled
                        duration:
                          type: number
                          description: Recording duration in seconds
                        sourceDuration:
                          type: number
                          description: Original source duration in seconds
                        createdAt:
                          type: string
                          format: date-time
                          description: Recording creation timestamp
                        updatedAt:
                          type: string
                          format: date-time
                          description: Recording last update timestamp
                  glossary:
                    type: object
                    description: Glossary configuration for the project (if any)
                    properties:
                      id:
                        type: string
                        format: uuid
                        description: Glossary ID
                      name:
                        type: string
                        description: Glossary name
                      items:
                        type: string
                        description: Glossary items (newline-separated)
                      additionalItems:
                        type: string
                        description: Additional glossary items
                  pronunciations:
                    type: array
                    description: Pronunciations applied to the project
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Pronunciation set ID
                        name:
                          type: string
                          description: Pronunciation set name
                        languageCode:
                          type: string
                          description: Language code for this pronunciation set
                        items:
                          type: array
                          description: Pronunciation pairs
                          items:
                            type: object
                            properties:
                              source:
                                type: string
                                description: Source word/phrase
                              target:
                                type: string
                                description: Target pronunciation
                            required:
                              - source
                              - target
                      required:
                        - id
                        - name
                        - languageCode
                        - items
                  safeCommunications:
                    type: array
                    description: Safe communication evaluations applied to the project
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Safe communication ID
                        name:
                          type: string
                          description: Safe communication name
                        description:
                          type: string
                          description: Safe communication description
                      required:
                        - id
                        - name
                  insights:
                    type: array
                    description: Insights applied to the project
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Insight ID
                        name:
                          type: string
                          description: Insight name
                        description:
                          type: string
                          description: Insight description
                        items:
                          type: array
                          description: Insight items (prompts)
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                format: uuid
                                description: Insight item ID
                              name:
                                type: string
                                description: Insight item name
                              content:
                                type: string
                                description: Insight item content (prompt)
                            required:
                              - id
                              - name
                              - content
                      required:
                        - id
                        - name
                required:
                  - id
                  - name
                  - status
                  - createdAt
                  - updatedAt
              examples:
                basic_project:
                  summary: Basic project without insights/safe communications
                  value:
                    id: 24746a21-bf6a-46c8-872f-8df3c9df1b53
                    accountId: e7631985-e50d-424e-beef-6cb536d32c11
                    name: <string>
                    archived: false
                    firstRecordingId: f62368a1-6fe7-4015-a010-3360ab987134
                    sourceLanguage: en
                    subtitleProfileId: 12c499bb-1ec9-43f2-9e0a-c07486366898
                    mediaType: AUDIO
                    duration: 11.7
                    fileCount: 1
                    owner: <string>
                    status: COMPLETED
                    recordingTypes:
                      - TRANSCRIPTION
                    createdAt: '2025-11-06T16:27:38.279Z'
                    updatedAt: '2025-11-06T16:32:19.742Z'
                    recordings:
                      - id: f62368a1-6fe7-4015-a010-3360ab987134
                        projectId: 24746a21-bf6a-46c8-872f-8df3c9df1b53
                        name: audio.wav
                        type: application/octet-stream
                        extension: wav
                        sourceLanguage: en
                        translationLanguages: []
                        dubbingLanguages: []
                        summaryEnabled: false
                        customAttributesEnabled: false
                        sourceDuration: 11.65
                        duration: 11.7
                        createdAt: '2025-11-06T16:27:40.620Z'
                        updatedAt: '2025-11-06T16:27:40.620Z'
                        insightsEnabled: false
                        safeCommunicationsEnabled: false
                    pronunciations: []
                    safeCommunications: []
                    insights: []
                full_project:
                  summary: Project with all features enabled
                  value:
                    id: f372af3c-c0c5-4913-9c65-fa24d66bbc24
                    accountId: e7631985-e50d-424e-beef-6cb536d32c11
                    name: test glossary fetch
                    archived: false
                    firstRecordingId: 5160671f-3233-43f8-bd84-086bfe7fa13d
                    sourceLanguage: en
                    subtitleProfileId: 12c499bb-1ec9-43f2-9e0a-c07486366898
                    mediaType: AUDIO
                    duration: 11.7
                    fileCount: 1
                    owner: <string>
                    status: COMPLETED
                    recordingTypes:
                      - TRANSCRIPTION
                      - TRANSLATION
                      - DUBBING
                      - SUMMARY
                    createdAt: '2025-11-06T16:48:28.959Z'
                    updatedAt: '2025-11-06T17:00:00.395Z'
                    recordings:
                      - id: 5160671f-3233-43f8-bd84-086bfe7fa13d
                        projectId: f372af3c-c0c5-4913-9c65-fa24d66bbc24
                        name: test-audio.wav
                        type: audio/wav
                        extension: wav
                        sourceLanguage: en
                        translationLanguages:
                          - tr
                        dubbingLanguages:
                          - tr
                        summaryEnabled: false
                        customAttributesEnabled: false
                        sourceDuration: 11.65
                        duration: 11.7
                        createdAt: '2025-11-06T16:48:31.746Z'
                        updatedAt: '2025-11-06T16:48:31.746Z'
                        insightsEnabled: true
                        safeCommunicationsEnabled: true
                    pronunciations:
                      - id: f983b484-e1b6-439d-8aca-fd9c29181773
                        name: english  greeting
                        languageCode: tr
                        items:
                          - source: hello
                            target: onion
                    safeCommunications:
                      - id: 550e8400-e29b-41d4-a716-446655440003
                        name: Respectful Language
                        description: >-
                          Assesses the use of polite, considerate, and civil
                          language while ensuring the absence of derogatory
                          terms, personal attacks, or demeaning phrases towards
                          any individual or group.
                      - id: 550e8400-e29b-41d4-a716-446655440002
                        name: Potential Red Flags
                        description: >-
                          Identifies content, phrases, or exchanges that could
                          be considered unethical, illegal, or harmful,
                          potentially exposing individuals or organizations to
                          legal, reputational, or security risks.
                    insights:
                      - id: 550e8400-e29b-41d4-a716-446655445001
                        name: Earnings Call
                        description: >-
                          Curated prompts to analyze quarterly earnings calls,
                          focusing on growth drivers, risk factors, and
                          forward-looking guidance to inform strategic
                          decisions.
                        items:
                          - id: 550e8400-e29b-41d4-a716-446655445101
                            name: Growth and Revenue Drivers
                            content: >-
                              Can you elaborate on the primary drivers behind
                              this quarter's revenue growth or decline?
                              Specifically, how do factors such as market
                              demand, pricing changes, new customer acquisition,
                              or product/service mix have impacted the earnings
                              results?
                          - id: 550e8400-e29b-41d4-a716-446655445102
                            name: Challenges and Risk Management
                            content: >-
                              What were the main challenges faced this quarter,
                              and how have they impacted the financial results?
                              Additionally, how is the company addressing these
                              challenges, and what risk management strategies
                              are being implemented to mitigate potential future
                              risks?
                          - id: 550e8400-e29b-41d4-a716-446655445103
                            name: Future Outlook and Strategic Initiatives
                            content: >-
                              Based on this quarter's performance and current
                              market trends, what is the company's outlook for
                              the upcoming quarters? Can you provide more
                              details on any planned strategic initiatives or
                              investments that are expected to drive future
                              growth or improve operational efficiency?
                      - id: 550e8400-e29b-41d4-a716-446655445002
                        name: Company Presentation
                        description: >-
                          Prompts designed to extract actionable insights from
                          company presentations, covering implementation steps,
                          emerging trends, and lessons learned for better
                          execution.
                        items:
                          - id: 550e8400-e29b-41d4-a716-446655445201
                            name: Insights on Implementation
                            content: >-
                              Based on the strategies or solutions you
                              presented, could you suggest practical steps for
                              implementation in a [specific context relevant to
                              your field or interest]? How do these steps
                              account for common obstacles or industry-specific
                              challenges?
                          - id: 550e8400-e29b-41d4-a716-446655445202
                            name: Future Implications and Trends
                            content: >-
                              From your perspective, how might the trends or
                              innovations you discussed today evolve over the
                              next few years? What do you foresee as the
                              potential long-term impact on our industry, and
                              how should professionals or organizations prepare
                              to adapt?
                          - id: 550e8400-e29b-41d4-a716-446655445203
                            name: Lessons from Successes and Failures
                            content: >-
                              Can you share a personal experience or a case
                              study where the approach you advocated led to
                              significant outcomes, either successful or
                              otherwise? What were the key lessons learned, and
                              how can these insights inform future strategy or
                              decision-making?
        '400':
          description: Bad Request (invalid ID)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                invalid_id:
                  summary: Invalid project id
                  value:
                    success: false
                    statusCode: 400
                    message: Bad Request
                    timestamp: '2025-01-01T00:00:00.000Z'
        '401':
          description: Unauthorized (invalid API key)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                invalid_api_key:
                  summary: Invalid API key
                  value:
                    success: false
                    statusCode: 401
                    message: Unauthorized
                    timestamp: '2025-01-01T00:00:00.000Z'
        '404':
          description: Project not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                not_found:
                  summary: Project not found
                  value:
                    success: false
                    statusCode: 404
                    message: Project not found
                    timestamp: '2025-01-01T00:00:00.000Z'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                server_error:
                  summary: Unexpected error
                  value:
                    success: false
                    statusCode: 500
                    message: Internal server error
                    timestamp: '2025-01-01T00:00:00.000Z'
      security:
        - apiKeyAuth: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        statusCode:
          type: integer
          example: 400
        message:
          type: string
          example: Bad Request
        timestamp:
          type: string
          format: date-time
          example: '2025-01-01T00:00:00.000Z'
      required:
        - success
        - statusCode
        - message
        - timestamp
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````