Get preview source movie

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 /movies/source/preview-files/{instance_id}.mp4

Download the movie as it was uploaded, without any normalization. Answers a 404 when the source was not kept. Mainly meant for the synchronisation between two instances.

Path parameters

  • instance_id string(uuid) Required

    Preview file unique identifier

Responses

  • 200 video/mp4

    Source movie preview downloaded

GET /movies/source/preview-files/{instance_id}.mp4
curl \
 --request GET 'http://api.example.com/movies/source/preview-files/a24a6ea4-ce75-4665-a070-57453082c25.mp4' \
 --header "Authorization: $API_KEY"