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

# Get all faces



## OpenAPI

````yaml https://api.simli.ai/openapi.yaml get /faces
openapi: 3.1.0
info:
  title: Simli
  version: 1.0.0
servers:
  - url: https://api.simli.ai/
    description: API server
security:
  - ApiKeyAuth: []
paths:
  /faces:
    get:
      summary: Get all faces
      responses:
        '200':
          description: List of faces
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FacesResponse'
components:
  schemas:
    FacesResponse:
      type: object
      additionalProperties: false
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the face, generated by the MySQL service
        owner_id:
          type: string
          description: Unique identifier for the owner of the face
        simli_version:
          type: integer
          description: Version of the Simli model used for the face
          example: 1
        created_at:
          type: string
          format: date-time
          description: Timestamp when the face was created
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the face was last updated
      required:
        - id
        - owner_id
        - simli_version
        - created_at
        - updated_at
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-simli-api-key

````