# Batch Campaign Slug Cleanup

**Use case:** 

Prepare consistent campaign, ad set, or landing-page slugs using custom separators and custom stop words.

## Input

```json
{
  "texts": [
    "Q1 Launch - Paid Social - North America",
    "Q1 Launch - Paid Search - United Kingdom",
    "Q1 Launch - Partner Email - DACH"
  ],
  "separator": "_",
  "lowercase": true,
  "locale": "",
  "maxLength": 0,
  "removeStopWords": false,
  "customStopWords": [
    "q1",
    "launch"
  ],
  "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.