Nurama Developers
AI

List polish tones available to the chat composer.

Returns the polish tone catalogue so clients can offer tone choices without hard-coding them. The list is currently fixed; workspace-scoped custom tones are planned.

GET
/ai/tones

Returns the polish tone catalogue so clients can offer tone choices without hard-coding them. The list is currently fixed; workspace-scoped custom tones are planned.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/ai/tones"
{  "tones": [    {      "id": "professional",      "label": "Professional"    },    {      "id": "casual",      "label": "Casual"    },    {      "id": "concise",      "label": "Concise"    },    {      "id": "friendly",      "label": "Friendly"    },    {      "id": "formal",      "label": "Formal"    },    {      "id": "cleanup",      "label": "Cleanup"    }  ]}