action shutterstock_get_editorial_video { label: "Get editorial video content details" description: "This endpoint shows information about an editorial image, including a URL to a preview image and the sizes that it is available in." provider: shutterstock method: GET path: "/v2/editorial/videos/{id}" encoding: json input: { type: "object" properties: { country: { type: "string" format: "country-code-3" } id: { type: "string" } search_id: { type: "string" } } required: ["country", "id"] additionalProperties: false } output: { type: "object" description: "Metadata about editorial content" required: ["id"] properties: { aspect: { type: "number" } assets: { type: "object" description: "Asset information, including size and thumbnail URLs" properties: { original: { type: "object" description: "Video asset information" properties: { display_name: { type: "string" description: "Display name of this video size" } file_size: { type: "integer" description: "File size (in bytes) of this video size" } format: { type: "string" description: "Format of this video size" } fps: { type: "number" description: "Frames per second of this video size" } height: { type: "integer" description: "Height of this video size" } is_licensable: { type: "boolean" description: "Whether or not videos can be licensed in this video size" } width: { type: "integer" description: "Width of this video size" } } } preview_mp4: { type: "object" description: "Video preview information" required: ["url"] properties: { url: { type: "string" description: "Direct URL to the image" } } } preview_webm: { type: "object" additionalProperties: true } thumb_jpg: { type: "object" additionalProperties: true } } } byline: { type: "string" } caption: { type: "string" } categories: { type: "array" description: "List of categories" items: { type: "object" description: "Name of an editorial category" properties: { name: { type: "string" } } } } date_taken: { type: "string" format: "date" } description: { type: "string" } id: { type: "string" } keywords: { type: "array" items: { type: "string" } } title: { type: "string" } } } }