get_download_url
Generate custom download URLs for Noun Project icons with specific color, size, and format options to integrate icons into your projects.
Instructions
Get a download URL for an icon with custom color and size options. Supports SVG and PNG formats.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| icon_id | Yes | The unique ID of the icon to download | |
| color | No | Hexadecimal color value (e.g., "FF0000" for red) | |
| filetype | No | File format: svg or png | |
| size | No | For PNG, size in pixels (minimum 20, maximum 1200) |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Hexadecimal color value (e.g., \"FF0000\" for red)",
"type": "string"
},
"filetype": {
"description": "File format: svg or png",
"enum": [
"svg",
"png"
],
"type": "string"
},
"icon_id": {
"description": "The unique ID of the icon to download",
"type": "number"
},
"size": {
"description": "For PNG, size in pixels (minimum 20, maximum 1200)",
"type": "number"
}
},
"required": [
"icon_id"
],
"type": "object"
}