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

# Get a single real customer call



## OpenAPI

````yaml https://api.voice-agents.miraiminds.co/swagger.yaml get /v1/showcase/calls/{call_id}
openapi: 3.0.3
info:
  title: Voice Agent by Mirai Minds
  version: 1.1.0
  contact:
    name: API Architecture Team
    url: https://miraiminds.co
  license:
    name: Mirai Minds Proprietary License
    url: >-
      https://github.com/MiraiMinds/voice-agent-integration-specs/blob/main/LICENSE.md
servers:
  - url: https://api.voice-agents.miraiminds.co
    description: Production Server
  - url: https://api.stage.voice-agent.miraiminds.co
    description: Staging Server
  - url: http://localhost:3000
    description: Local Server
security:
  - PublicKeyAuth: []
    PrivateKeyAuth: []
paths:
  /v1/showcase/calls/{call_id}:
    get:
      tags:
        - Showcase
      summary: Get a single real customer call
      operationId: getShowcaseCall
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
            pattern: ^[0-9a-fA-F]{24}$
          example: 507f1f77bcf86cd799439011
      responses:
        '200':
          description: Call fetched successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    $ref: '#/components/schemas/ShowcaseCall'
        '404':
          description: Call not found
      security: []
components:
  schemas:
    ShowcaseCall:
      type: object
      description: >-
        A real customer call recording used for social proof on the showcase
        page.
      properties:
        _id:
          type: string
          example: 507f1f77bcf86cd799439011
        title:
          type: string
          example: Cart recovery call
        language:
          type: string
          enum:
            - hi
            - bn
            - en
            - ta
            - te
          example: bn
        languageLabel:
          type: string
          example: Bengali
        category:
          type: string
          enum:
            - abandoned_cart
            - bot_navigation
            - uncertainty_handling
            - bad_connection
            - cod_confirmation
          example: abandoned_cart
        brandName:
          type: string
          description: Name of the store this call was made for.
          example: StyleKart
        brandLogoUrl:
          type: string
          nullable: true
          example: https://cdn.example.com/stylekart_logo.png
        description:
          type: string
          example: >-
            A real Bengali customer who dropped off mid-checkout. AI called back
            and recovered the order.
        durationSecs:
          type: integer
          example: 63
        audioUrl:
          type: string
          example: >-
            https://storage.miraiminds.co/voice-agents/production/call_records/abc123/recording.wav
        waveformUrl:
          type: string
          nullable: true
          example: >-
            https://storage.miraiminds.co/voice-agents/production/call_records/abc123/waveform.json
        transcriptPreview:
          type: string
          nullable: true
          example: Namaste Priya ji, aapne ek blue kurta cart mein...
        highlightMoments:
          type: array
          items:
            $ref: '#/components/schemas/ShowcaseHighlightMoment'
        whatToNotice:
          type: string
          nullable: true
          example: Notice how the AI stays in Bengali throughout without switching.
        tags:
          type: array
          items:
            type: string
          example:
            - bengali
            - recovery
        sortOrder:
          type: integer
          example: 1
      required:
        - title
        - language
        - languageLabel
        - category
        - brandName
        - description
        - durationSecs
        - audioUrl
        - sortOrder
    ShowcaseHighlightMoment:
      type: object
      properties:
        atSecs:
          type: integer
          description: Timestamp in seconds to pin within the audio.
          example: 12
        label:
          type: string
          example: IVR detected
      required:
        - atSecs
        - label
  securitySchemes:
    PublicKeyAuth:
      type: apiKey
      in: header
      name: x-public-key
    PrivateKeyAuth:
      type: apiKey
      in: header
      name: x-private-key

````