get_icon
Retrieve detailed metadata, creator information, tags, and download URLs for specific icons using their unique ID numbers.
Instructions
Get detailed information about a specific icon by its ID. Returns icon metadata, creator info, tags, and download URLs.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| icon_id | Yes | The unique ID of the icon | |
| thumbnail_size | No | Thumbnail size to return (42, 84, or 200 pixels) | 
Input Schema (JSON Schema)
{
  "properties": {
    "icon_id": {
      "description": "The unique ID of the icon",
      "type": "number"
    },
    "thumbnail_size": {
      "description": "Thumbnail size to return (42, 84, or 200 pixels)",
      "enum": [
        42,
        84,
        200
      ],
      "type": "number"
    }
  },
  "required": [
    "icon_id"
  ],
  "type": "object"
}