Skip to main content
GET
/
plaud
/
files
/
{id}
/
tabs
List note tabs
curl --request GET \
  --url https://{deployment}/api/v1/plaud/files/{id}/tabs \
  --header 'X-API-KEY: <api-key>'
{
  "file_id": "<string>",
  "tabs": [
    {
      "tab_id": "<string>",
      "tab_name": "<string>",
      "type": "<string>",
      "format": "<string>",
      "template_id": "<string>",
      "template_name": "<string>",
      "ready": true
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY). Your Plaud account credentials are stored server-side — you do not send them.

Path Parameters

id
string
required

Plaud recording (file) ID.

Query Parameters

include_source
boolean
default:false

Include raw-source rows (transcript transaction, outline) that are hidden by default as picker noise.

Response

Note tabs

file_id
string
tabs
object[]