action thenounproject_get_icons_by_term { label: "Get icons by term" description: "Returns a list of icons" provider: thenounproject method: GET path: "/icons/{term}" encoding: json input: { type: "object" properties: { limit: { type: "string" } limit_to_public_domain: { type: "string" } offset: { type: "string" } page: { type: "string" } term: { type: "string" } } required: ["term"] additionalProperties: false } output: { type: "object" additionalProperties: true } }