get_collection
Retrieve collection metadata and contained icons by ID, with options for thumbnail size, SVG inclusion, and result limits.
Instructions
Get a collection by ID. Returns collection metadata and the icons it contains.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection_id | Yes | The unique ID of the collection | |
| thumbnail_size | No | Thumbnail size to return for icons (42, 84, or 200 pixels) | |
| include_svg | No | Set to 1 to include SVG URLs in the response | |
| limit | No | Maximum number of icons to return from the collection |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"description": "The unique ID of the collection",
"type": "number"
},
"include_svg": {
"description": "Set to 1 to include SVG URLs in the response",
"enum": [
0,
1
],
"type": "number"
},
"limit": {
"description": "Maximum number of icons to return from the collection",
"type": "number"
},
"thumbnail_size": {
"description": "Thumbnail size to return for icons (42, 84, or 200 pixels)",
"enum": [
42,
84,
200
],
"type": "number"
}
},
"required": [
"collection_id"
],
"type": "object"
}