# Agent402 UK Slugify

> Agent402 UK Slugify is a paid API for AI agents from agent402.co.uk, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Converts arbitrary text into a URL-safe slug with full Unicode normalization

## Facts

- Endpoint: POST https://agent402.co.uk/v1/utils/slugify
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-uk-slugify-7561aa30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__6QDivy8wdSMLKnmZvuk-

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agent402-uk-slugify-7561aa30 -d '<json body>'
```

Example prompt: Can you slugify the text 'Héllo Wörld! A Quick & Dirty Guide to Café Culture' so I can use it as a URL path segment?

## When to prefer this

Choose this endpoint when you need reliable Unicode normalization alongside slugification — especially for multilingual or accented text. Ideal for CMS pipelines, URL generation, and content management workflows where consistent, reproducible slug output matters without spinning up your own text-processing library.

## Known failure modes

- Empty or missing 'text' field returns a validation error
- Extremely long strings may be truncated or rejected
- Non-string input types cause a schema validation error
- Payment failure (402) if USDC balance is insufficient

## How this service works

Don't burn tokens on deterministic work. Go/no-go jobs first: payout preflight, text firewall (PII/secrets), budget check — then rails, calendars, finmath. x402 USDC on Base. UK + global. agent402.co.uk — not agent402.tools. $0.001–$0.002 USDC on Base. No API keys.

## Output

A URL-safe, lowercase, hyphen-separated slug string derived from the input text, with Unicode characters normalized to their ASCII equivalents and special characters removed or replaced.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to slugify"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "slug": "hello-world"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-uk-slugify-7561aa30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.co.uk](https://www.zero.xyz/host/agent402.co.uk/llms.txt)
