action shutterstock_get_image_suggestions { label: "Get suggestions for a search term" description: "This endpoint provides autocomplete suggestions for partial search terms." provider: shutterstock method: GET path: "/v2/images/search/suggestions" encoding: json input: { type: "object" properties: { limit: { type: "integer" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" description: "List of search suggestions" properties: { data: { type: "array" description: "Search suggestions" items: { type: "string" } } } } }