Guidance
List valid icons and colors
Returns the allowlists used when creating objects, tables, fields, and select options: valid icon keys, icon colors, option colors, and tag/relation modes. Sourced live from backend constants, so values never drift from validation. Accepts any valid API key.
get/public/v1/guidance/visual-options
Response
Visual option allowlists
Example response
{
"iconKeys": [
"home",
"users",
"briefcase",
"rocket"
],
"iconColors": [
{
"name": "blue",
"value": "#60a5fa"
}
],
"optionColors": [
{
"name": "blue",
"value": "#60a5fa"
}
],
"tagModes": [
"singleSelect",
"multiSelect"
],
"relationModes": [
"single",
"multi"
]
}