# Get meeting transcript (/docs/api/meetings/get-meeting-transcript)

## OpenAPI

```json
{
  "info": {
    "description": "The Circleback public REST API provides programmatic access to your meetings, notes, action items, transcripts, and more. Authenticate every request by sending your API key as a bearer token.",
    "title": "Circleback Public API",
    "version": "1.0.0"
  },
  "openapi": "3.2.0",
  "servers": [
    {
      "url": "https://circleback.ai/api"
    }
  ],
  "components": {
    "securitySchemes": {
      "ApiKeyAuth": {
        "bearerFormat": "cb_<secret>",
        "scheme": "bearer",
        "type": "http"
      }
    }
  },
  "tags": [
    {
      "description": "Access meetings along with their notes, transcripts, attendees, recordings, and search.",
      "name": "Meetings"
    }
  ],
  "paths": {
    "/meeting/{meetingId}/transcript": {
      "get": {
        "description": "Returns the full transcript for a meeting.",
        "parameters": [
          {
            "description": "The unique identifier of the meeting.",
            "in": "path",
            "name": "meetingId",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "description": "The segments of the transcript, in chronological order.",
                  "example": [
                    {
                      "speaker": "John Appleseed",
                      "text": "Hey, how's it going?",
                      "timestamp": 4.56
                    },
                    {
                      "speaker": "Samantha Grey",
                      "text": "Going well, just testing the Circleback API.",
                      "timestamp": 18.32
                    }
                  ],
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "speaker": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "description": "Speaker name."
                      },
                      "text": {
                        "description": "Words spoken.",
                        "type": "string"
                      },
                      "timestamp": {
                        "description": "Timestamp in seconds that marks the beginning of the segment.",
                        "type": "number"
                      }
                    },
                    "required": [
                      "speaker",
                      "text",
                      "timestamp"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                }
              }
            },
            "description": "Successful response."
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "code": {
                      "description": "A machine-readable code identifying the type of failure.",
                      "type": "string"
                    },
                    "error": {
                      "description": "A human-readable message explaining why the request failed.",
                      "type": "string"
                    },
                    "seatsToAdd": {
                      "description": "The authoritative number of workspace seats required.",
                      "exclusiveMinimum": 0,
                      "type": "integer"
                    },
                    "issues": {
                      "description": "The field-level validation issues found in an invalid request.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "message": {
                            "description": "A human-readable explanation of the validation failure.",
                            "type": "string"
                          },
                          "path": {
                            "description": "The location of the request field that failed validation.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "path",
                          "message"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "The request failed validation."
          },
          "429": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1meeting~1{meetingId}~1transcript/get/responses/400/content/application~1json/schema"
                }
              }
            },
            "description": "The request exceeded the rate limit for the account's plan, which the error message names: 3 requests per second and 20 per minute on Free, 20 per second and 300 per minute on Pro, Business, and Enterprise. Retry after the number of seconds in the `Retry-After` header."
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          },
          {}
        ],
        "summary": "Get meeting transcript",
        "tags": [
          "Meetings"
        ]
      }
    }
  }
}
```