Extract all annotated frames from preview as a PDF

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-docs.kitsu.cloud/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Kitsu API MCP server": {
  "url": "https://api-docs.kitsu.cloud/mcp"
}
Close
GET /actions/preview-files/{preview_file_id}/extract-annotated-frames-pdf

Build a multi-page PDF with one page per annotation — for movies, the extracted frame at the annotation's time; for pictures, a copy of the picture with the annotation rendered. Returns 400 if the preview has no annotations.

Path parameters

  • preview_file_id string(uuid) Required

    Preview file unique identifier

Responses

  • 200 application/pdf

    PDF document with annotated frames as pages

  • 400

    Preview has no annotations or unsupported extension

  • 404

    Preview file binary is not available

GET /actions/preview-files/{preview_file_id}/extract-annotated-frames-pdf
curl \
 --request GET 'http://api.example.com/actions/preview-files/a24a6ea4-ce75-4665-a070-57453082c25/extract-annotated-frames-pdf' \
 --header "Authorization: $API_KEY"