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

# List Transcriptions

List Transcriptions

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Platform",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "https://api.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      }
    }
  },
  "paths": {
    "/videos/{id}/transcriptions": {
      "get": {
        "tags": [
          "Transcriptions"
        ],
        "summary": "List Transcriptions",
        "description": "List Transcriptions",
        "operationId": "listTranscriptions",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "description": "Id of video",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "title": "TranscriptionsResponse",
                  "type": "object",
                  "properties": {
                    "response": {
                      "type": "array",
                      "items": {
                        "title": "Transcription",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string"
                          },
                          "language": {
                            "type": "string"
                          },
                          "status": {
                            "type": "string"
                          },
                          "translation": {
                            "description": "Indicates whether the transcription is a translation or not",
                            "type": "boolean"
                          },
                          "segments": {
                            "type": "object",
                            "properties": {
                              "items": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "title": "TranscriptionSegment",
                                  "properties": {
                                    "order": {
                                      "description": "The index of the segment within the transcription text",
                                      "type": "number"
                                    },
                                    "start": {
                                      "description": "The start time in seconds of the segment, relative to video start (0)",
                                      "type": "number"
                                    },
                                    "end": {
                                      "description": "The end time in seconds of the segment, relative to video start (0)",
                                      "type": "number"
                                    },
                                    "text": {
                                      "description": "The text within the segment timeframe",
                                      "type": "string"
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Video not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1app/get/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    }
  }
}
```