> ## Documentation Index
> Fetch the complete documentation index at: https://platform.perso.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List Text Normalization Configs

> List text normalization configs for the organization.



## OpenAPI

````yaml /specs/openapi-interactive.json get /api/v1/settings/text_normalization_config/
openapi: 3.0.3
info:
  title: Perso Interactive API
  version: 0.0.0
servers:
  - url: https://platform.perso.ai
security: []
tags:
  - name: Embed
paths:
  /api/v1/settings/text_normalization_config/:
    get:
      tags:
        - Session Resources
      summary: List Text Normalization Configs
      description: List text normalization configs for the organization.
      operationId: v1_settings_text_normalization_config_list
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TextNormalizationConfig'
          description: ''
        '401':
          description: Unauthorized - Invalid or missing authentication credentials.
        '403':
          description: Forbidden - You do not have permission to perform this action.
        '500':
          description: Internal Server Error - An unexpected error occurred.
      security:
        - PersoPlatform-APIKey: []
        - {}
components:
  schemas:
    TextNormalizationConfig:
      type: object
      properties:
        textnormalizationconfig_id:
          type: string
          readOnly: true
        name:
          type: string
          readOnly: true
        hook_enabled:
          type: boolean
          description: >-
            Call the pre/post hooks around regex rulesets (e.g. server-side
            locale detection for multi-language text). When disabled, hook URLs
            and args are kept but not used.
        pre_hook_url:
          type: string
          nullable: true
          readOnly: true
        pre_hook_args:
          nullable: true
        post_hook_url:
          type: string
          nullable: true
          readOnly: true
        post_hook_args:
          nullable: true
        created_at:
          type: string
          format: date-time
          readOnly: true
      required:
        - created_at
        - name
        - post_hook_url
        - pre_hook_url
        - textnormalizationconfig_id
  securitySchemes:
    PersoPlatform-APIKey:
      type: apiKey
      in: header
      name: PersoPlatform-APIKey

````