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

# List speaker verification evidences

> Lists all evidences for a speaker verification



## OpenAPI

````yaml get /organization/voices/{voice_id}/speaker_verification/evidences
openapi: 3.0.1
info:
  title: BeyondWords REST API
  description: |-
    This is the documentation for the BeyondWords REST API.
              You can use this API to use BeyondWords programmatically.
              You can get your API Key and Project ID for each project in the Project settings tab in the BeyondWords
              <a href="https://dash.beyondwords.io/dashboard">dashboard</a>.
  version: 1.0.0
servers:
  - url: https://api.beyondwords.io/v1
security: []
paths:
  /organization/voices/{voice_id}/speaker_verification/evidences:
    parameters:
      - name: voice_id
        in: path
        required: true
        description: Voice ID
        schema:
          type: string
    get:
      tags:
        - Speaker Verification Evidences
      summary: List
      description: Lists all evidences for a speaker verification
      operationId: organization/voices/speaker_verification/evidences#index
      responses:
        '200':
          description: OK
          content:
            application/json:
              examples:
                example:
                  $ref: '#/components/examples/speakerVerificationEvidencesExample'
              schema:
                $ref: '#/components/schemas/speakerVerificationEvidencesModel'
        '401':
          description: Invalid authentication token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
      security:
        - apiKey: []
components:
  examples:
    speakerVerificationEvidencesExample:
      summary: Sample list of speaker verification evidences
      value:
        - id: 1
          speaker_verification_id: 10
          file:
            url: https://example.com/evidence1.jpg
          created: 2024-01-01 00:00:00 UTC
          updated: 2024-01-01 00:00:05 UTC
        - id: 2
          speaker_verification_id: 10
          file:
            url: https://example.com/evidence2.jpg
          created: 2024-01-02 00:00:00 UTC
          updated: 2024-01-02 00:00:05 UTC
  schemas:
    speakerVerificationEvidencesModel:
      type: array
      items:
        $ref: '#/components/schemas/speakerVerificationEvidenceModel'
    errorModel:
      type: object
      properties:
        code:
          type: integer
          description: Error code
        message:
          type: string
          description: Error message
        errors:
          type: array
          nullable: true
          items:
            type: object
            properties:
              location:
                type: string
              message:
                type: string
    speakerVerificationEvidenceModel:
      type: object
      properties:
        id:
          type: integer
          description: Unique identifier for the object
        speaker_verification_id:
          type: integer
          description: ID of the speaker verification this evidence belongs to
        file:
          type: object
          description: Evidence file
          nullable: true
          properties:
            url:
              type: string
              description: URL of the uploaded evidence file
        created:
          type: string
          description: Time at which the object was created (ISO 8601)
        updated:
          type: string
          description: Time at which the object was updated (ISO 8601)
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````