action shutterstock_get_image_keyword_suggestions { label: "Get keywords from text" description: "This endpoint returns up to 10 important keywords from a block of plain text." provider: shutterstock method: POST path: "/v2/images/search/suggestions" encoding: json input: { type: "object" description: "Search entity request data" required: ["text"] properties: { text: { type: "string" description: "Plain text to extract keywords from" } } } output: { description: "The response to a request for keyword analysis" properties: { keywords: { type: "array" description: "The top keywords from the submitted text" items: { type: "string" } } } } }