Skip to main content
GET
/
plaud
/
files
/
{id}
/
summary
Get AI summary
curl --request GET \
  --url https://{deployment}/api/v1/plaud/files/{id}/summary \
  --header 'X-API-KEY: <api-key>'
{
  "file_id": "<string>",
  "markdown": "<string>",
  "images": [
    {
      "path": "<string>",
      "url": "<string>"
    }
  ]
}

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.

Response

Summary

file_id
string
source
enum<string>
Available options:
inline,
s3
markdown
string

Summary as Markdown with image paths rewritten to pre-signed URLs.

images
object[]