Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Retrieve the catalog of predefined UI icons available across the platform. Icons can be referenced by `iconId` in APIs (e.g., preset prompts) or overridden with a custom icon object.
GEThttps://api.freddy.aitronos.com/v1/icons

Returns

A list of Icon objects.

Bash
curl "https://api.freddy.aitronos.com/v1/icons" \
  -H "Authorization: Bearer $FREDDY_API_KEY"

Response

{
  "icons": [
    {
      "id": "icon_welcome",
      "name": "Welcome",
      "url": "https://cdn.aitronos.com/icons/icon-welcome.svg",
      "alt": "Speech bubble icon",
      "category": "general"
    },
    {
      "id": "icon_support",
      "name": "Support",
      "url": "https://cdn.aitronos.com/icons/icon-support.svg",
      "alt": "Lifebuoy icon",
      "category": "support"
    }
  ],
  "total": 2
}