Download shared preview file

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 /shared/playlists/{token}/preview-files/{preview_file_id}/download

Download a preview file (any extension) attached to the shared playlist as an attachment. Mirrors the authenticated /pictures/originals/preview-files/<id>/download route but gated by the playlist share token instead of JWT.

Path parameters

  • token string Required

    Share link token

  • preview_file_id string(uuid) Required

    Preview file unique identifier

Responses

  • 200 application/octet-stream

    Preview file downloaded as attachment

  • 403

    Preview file is not part of this shared playlist

  • 404

    Preview file not on disk

GET /shared/playlists/{token}/preview-files/{preview_file_id}/download
curl \
 --request GET 'http://api.example.com/shared/playlists/{token}/preview-files/{preview_file_id}/download' \
 --header "Authorization: $API_KEY"