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

# Get Speakers

> Get diarized speakers

<Info>
  **Product**: Video Datalake
  **Host**: `https://api.memories.ai/datalake/v1`
  **Auth**: `Authorization: sk-mai-...`
</Info>

Return the diarized speaker clusters. No audio / no speech → empty array (normal).

<Note>
  **Pricing:** \$0.001 / call · See [Pricing](/datalake/pricing) for the full model.
</Note>

## Response Fields

<ResponseField name="speakers" type="array">`[{speaker_id, identity_id, first_seen, last_seen, segment_count}]`.</ResponseField>
<ResponseField name="live" type="boolean">`true` while still indexing.</ResponseField>


## OpenAPI

````yaml GET /datalake/v1/videos/{id}/speakers
openapi: 3.1.0
info:
  title: Memories.ai DataLake API 2.0
  version: 2026-08
  description: OpenAPI mapping used by Mintlify Try it for the DataLake API 2.0 docs.
servers:
  - url: https://api.memories.ai
security:
  - ApiKeyAuth: []
paths:
  /datalake/v1/videos/{id}/speakers:
    get:
      tags:
        - Moments & Derived Content
      summary: Get diarized speakers
      description: >-
        Return the diarized speaker clusters. No audio / no speech → empty array
        (normal).
      operationId: get_speakers
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Video ID.
        - name: since
          in: query
          required: false
          schema:
            type: string
          description: Incremental cursor.
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                speakers:
                  - speaker_id: spk_2
                    identity_id: null
                    first_seen: 12.3
                    last_seen: 189.5
                    segment_count: 42
                next_cursor: null
                live: false
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Send `Authorization: sk-mai-...`'

````