# Create Localized Product URL Slugs

**Use case:** 

Convert accented product and category names into stable URL slugs for multilingual catalogs.

## Input

```json
{
  "texts": [
    "Café en Grains Édition Limitée",
    "Chaussures d'Été pour Enfants",
    "Crème Brûlée à la Vanille Bio"
  ],
  "separator": "-",
  "lowercase": true,
  "locale": "fr",
  "maxLength": 0,
  "removeStopWords": false,
  "customStopWords": [],
  "deduplicate": true
}
```

## Output

```json
{
  "index": {
    "label": "#",
    "format": "number"
  },
  "text": {
    "label": "Original Text",
    "format": "text"
  },
  "slug": {
    "label": "Slug",
    "format": "text"
  },
  "characterCount": {
    "label": "Chars",
    "format": "number"
  },
  "wordCount": {
    "label": "Words",
    "format": "number"
  },
  "wasTruncated": {
    "label": "Truncated",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Text to Slug Generator](https://apify.com/automation-lab/text-to-slug-generator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/text-to-slug-generator) to learn more, explore other use cases, and run it yourself.