Get shared movie tile strip

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}/movies/tiles/preview-files/{preview_file_id}.png

Serve the filmstrip/tile image used for timeline hover previews, when the share token is valid.

Path parameters

  • token string Required

    Share link token

  • preview_file_id string(uuid) Required

    Preview file unique identifier

Responses

  • 200 image/png

    Tile sprite image

  • 403

    Preview file is not part of this shared playlist

  • 404 application/json

    Tile file missing

    Hide response attribute Show response attribute object
    • error string
GET /shared/playlists/{token}/movies/tiles/preview-files/{preview_file_id}.png
curl \
 --request GET 'http://api.example.com/shared/playlists/{token}/movies/tiles/preview-files/{preview_file_id}.png' \
 --header "Authorization: $API_KEY"
Response examples (404)
{
  "error": "string"
}