action shutterstock_get_featured_image_collection { label: "Get the details of featured image collections" description: "This endpoint gets more detailed information about a featured collection, including its cover image and timestamps for its creation and most recent update. To get the images, use `GET /v2/images/collections/featured/{id}/items`." provider: shutterstock method: GET path: "/v2/images/collections/featured/{id}" encoding: json input: { type: "object" properties: { asset_hint: { type: "string" enum: ["1x", "2x"] } embed: { type: "string" enum: ["share_url"] } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Metadata about a featured collection" required: ["id", "name", "total_item_count"] properties: { cover_item: { type: "object" description: "Featured collection cover item metadata" required: ["url"] properties: { url: { type: "string" description: "URL of the collection cover item" } } } created_time: { type: "string" format: "date-time" description: "Date that the collection was created" } hero_item: { type: "object" additionalProperties: true } id: { type: "string" description: "Collection ID" } items_updated_time: { type: "string" format: "date-time" description: "Date that an item in the collection was last added or removed" } name: { type: "string" description: "Name of the collection" } share_url: { type: "string" description: "Unique share url for the collection" } total_item_count: { type: "integer" description: "Total number of items in the collection" } updated_time: { type: "string" format: "date-time" description: "Date that the collection was last modified" } } } }