> ## 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 Safe Communications

> Retrieve available safe communications for the authenticated account



## OpenAPI

````yaml /openapi/phrase-studio.json get /v1/safe-communications
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/safe-communications:
    get:
      tags:
        - Safe Communications
      summary: Get Safe Communications
      description: Retrieve available safe communications for the authenticated account
      operationId: getSafeCommunications
      responses:
        '200':
          description: Safe communications retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    description: Array of safe communications
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Safe communication ID
                        accountId:
                          type: string
                          format: uuid
                          nullable: true
                          description: Account ID (nullable for shared)
                        name:
                          type: string
                          description: Name
                        description:
                          type: string
                          description: Description
                        content:
                          type: string
                          description: Evaluation content/prompt
                        createdAt:
                          type: string
                          format: date-time
                          description: Creation time
                        updatedAt:
                          type: string
                          format: date-time
                          description: Last update time
                      required:
                        - id
                        - name
                        - content
                  pagination:
                    type: object
                    properties:
                      page:
                        type: integer
                      pageSize:
                        type: integer
                      total:
                        type: integer
                      totalPages:
                        type: integer
                    required:
                      - page
                      - pageSize
                      - total
                      - totalPages
              examples:
                example:
                  summary: Sample response
                  value:
                    data:
                      - id: 550e8400-e29b-41d4-a716-446655440003
                        accountId: null
                        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.
                        content: >-
                          Score

                          On a scale of 20 to 100, where 20 represents a
                          complete lack of respect and 100 represents the
                          highest standard of respectful communication, how
                          would you rate the following conversation in terms of:

                          The use of polite and considerate language,

                          The absence of derogatory terms, personal attacks, or
                          demeaning phrases,

                          The level of understanding and empathy demonstrated
                          towards all participants,

                          The degree to which the language promotes a positive
                          and inclusive dialogue?


                          Description

                          Does the language in the following conversation
                          exhibit Respectful language considering aspects such
                          as politeness, considerateness, and civility, without
                          any use of derogatory terms, personal attacks, or
                          demeaning phrases towards any individual or group?
                        createdAt: '2025-09-10T14:33:02.786Z'
                        updatedAt: '2025-09-18T09:55:13.427Z'
                      - id: 550e8400-e29b-41d4-a716-446655440002
                        accountId: null
                        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.
                        content: >-
                          Score

                          On a scale of 0 to 100, how would you rate the
                          following conversation in terms of ethical and legal
                          integrity, with consideration to the following
                          factors:

                          The absence of language or content that could be
                          interpreted as unethical, illegal, or in violation of
                          policies or regulations,

                          The presence of respectful and professional dialogue
                          that upholds the values and reputation of the
                          individuals and the organization,

                          The degree to which the conversation maintains
                          confidentiality, data protection, and respect for
                          personal and proprietary information,

                          The extent to which the conversation aligns with the
                          established norms, values, and codes of conduct of the
                          relevant individuals or organization?


                          Description

                          Does the following conversation contain any content,
                          phrases, or exchanges that could be considered
                          unethical, illegal, or harmful, potentially exposing
                          individuals or the organization to risks such as legal
                          liability, reputational damage, or security threats?
                        createdAt: '2025-09-10T14:33:02.655Z'
                        updatedAt: '2025-09-18T09:55:13.255Z'
                      - id: 550e8400-e29b-41d4-a716-446655440001
                        accountId: null
                        name: Diversity and Inclusion
                        description: >-
                          Evaluates how well the conversation reflects awareness
                          and respect for diversity and inclusion, recognizing
                          and valuing diverse perspectives, experiences, and
                          backgrounds of all participants.
                        content: >-
                          Score

                          On a scale of 20 to 100, where 20 indicates no
                          consideration of diversity and inclusion and 100
                          represents exemplary incorporation of diverse and
                          inclusive practices, how would you rate the
                          conversation in terms of:

                          The representation and integration of diverse
                          perspectives and backgrounds,

                          The level of sensitivity and respect shown towards
                          cultural, racial, gender, and other forms of
                          diversity,

                          The extent to which the conversation promotes equal
                          participation and values contributions from all
                          individuals,

                          The presence of language and attitudes that support
                          and foster an inclusive environment?


                          Description

                          How well does the following conversation reflect an
                          awareness and respect for diversity and inclusion, in
                          terms of recognizing, valuing, and integrating diverse
                          perspectives, experiences, and backgrounds of all
                          participants?
                        createdAt: '2025-09-10T14:33:02.522Z'
                        updatedAt: '2025-09-18T09:55:13.083Z'
                    pagination:
                      page: 1
                      pageSize: 3
                      total: 3
                      totalPages: 1
        '401':
          description: Unauthorized (invalid API key)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden (access denied)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      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

````