action shutterstock_get_keywords { label: "List suggested keywords" description: "This endpoint returns a list of suggested keywords for a media item that you specify or upload." provider: shutterstock method: GET path: "/v2/cv/keywords" encoding: json input: { type: "object" properties: { asset_id: { type: "object" } } required: ["asset_id"] additionalProperties: false } output: { description: "List of keywords" properties: { data: { type: "array" description: "Keywords" items: { type: "string" } } errors: { type: "array" description: "Error list; appears only if there was an error" items: { type: "object" description: "Error object" required: ["message"] properties: { code: { type: "string" description: "The error code of this error" } data: { type: "string" description: "Debugging information about the error" } items: { type: "array" description: "A list of items that produced the error" items: { type: "object" } } message: { type: "string" description: "Specific details about this error" } path: { type: "string" description: "Internal code reference to the source of the error" } } } } message: { type: "string" description: "Server-generated message, if any" } } } }