Streamline Icons, Illustrations, and Emojis
Insert PNG and SVG Icons, Illustrations, Elements, and Emojis.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетНужен API-ключГлобальныйБесплатноТолько чтение
Что умеет
- Search Assets: Search icons, illustrations, or elements. With a non-empty `setSlug`, search within that Set. Else with a non-empty `familySlug`, search within that Family (bundle). Otherwise global se
- Search Sets: Semantic search for Sets by natural-language query: discovers Sets by meaning, not by substring on the stored name. Optionally scoped with `familySlug` to narrow results to a specific Fam
- Find Sets By Name: Case-insensitive substring match on stored Set names (minimum 3 characters). Use for exact or partial name lookup when the user types a name string. For semantic / intent-based disc
Какие данные видит
Нужен ли аккаунт
Нужен API-ключ из настроек сервиса
Insert PNG and SVG Icons, Illustrations, Elements, and Emojis.
Streamline makes the world's largest icon, illustration, emoji and graphic element sets. Each massive set is refined by an in-house team of 8 icon designers for over 12 years. The free version of Streamline includes 100,000+ icons and 21,000+ elements, available in both SVG and PNG formats. The pro version of Streamline has larger sets with ~400,000 graphic assets, available as a subscription or a one-time purchase.
Список инструментов сервера (9)
Технические названия из tools/list. Нужны только разработчикам.
| search_assets | Search icons, illustrations, or elements. With a non-empty `setSlug`, search within that Set. Else with a non-empty `familySlug`, search within that Family (bundle). Otherwise global search — requires `productType`. |
| search_sets | Semantic search for Sets by natural-language query: discovers Sets by meaning, not by substring on the stored name. Optionally scoped with `familySlug` to narrow results to a specific Family. For substring / partial name match on stored names, use `find_sets_by_name` instead — these do different things and must not be confused. Use `get_all_sets_from_family` when you already know the Family and want the full list with no search intent. |
| find_sets_by_name | Case-insensitive substring match on stored Set names (minimum 3 characters). Use for exact or partial name lookup when the user types a name string. For semantic / intent-based discovery, use `search_sets` instead — these do different things and must not be confused. |
| get_family_extra_details | Returns full semantic text for a family (bundle) in four sections: fit & recommendations, brand & cultural identity, visual & technical specs, and pairing & compatibility. Use when you need richer metadata to choose between family groups after `search_families` or `get_all_families` or when comparing multiple families. Pass the exact familySlug from those results; do not invent slugs. |
| get_icon_by_hash | Retrieves detailed information about an icon (Set, variants, preview URLs, tags). Use this when you need full icon metadata before downloading. Obtain the iconHash from `search_assets` results. |
| download_asset | Export an icon as PNG or SVG. Returns JSON with a short-lived signed `downloadUrl`, `expiresAt`, `expiresInSeconds`, `mimeType`, and `fileName`. Perform a plain GET on `downloadUrl` — no API key needed. SVG-only params: `responsive`, `strokeToFill`. |
| get_all_families | Returns all available Families. Each entry includes the Family hash and slug needed for other tools. Use this to present the full catalog or when the user wants to browse all available Families. |
| get_all_sets_from_family | Returns all Sets belonging to a specific Family. Paginated with offset (default 0) and limit (default 100, max 100). Use this when you already know the Family and want to list all its Sets with no search intent. Pass the Family `familyHash` from get_all_families (`hash` on each row) or from find_sets_by_name (`familyHash`) when available. |
| download_multiple_assets | Export multiple icons (up to 50) as PNG or SVG. Returns JSON with a `downloads` array; each entry has `iconHash`, a short-lived signed `downloadUrl`, `expiresAt`, `expiresInSeconds`, `mimeType`, and `fileName`. Perform a plain GET on each `downloadUrl` — no API key needed. SVG-only params: `responsive`, `strokeToFill`. |