action thenounproject_get_collection_by_slug { label: "Get collection by slug" description: "Returns a single collection" provider: thenounproject method: GET path: "/collection/{slug}" encoding: json input: { type: "object" properties: { slug: { type: "string" } } required: ["slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }