# Generate SEO Blog Post Slugs

**Use case:** 

Turn blog headlines into clean, keyword-friendly URL slugs with stop-word removal and length limits.

## Input

```json
{
  "texts": [
    "The Complete Guide to Local SEO for Restaurants",
    "How to Build a B2B Content Calendar in 2026",
    "10 Best Email Outreach Tools for Sales Teams"
  ],
  "separator": "-",
  "lowercase": true,
  "locale": "",
  "maxLength": 60,
  "removeStopWords": true,
  "customStopWords": [],
  "deduplicate": false
}
```

## 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.