# Klymax402 Slug Generator

> Klymax402 Slug Generator is a paid API for AI agents from klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Converts arbitrary text into a URL-safe slug by removing special characters, replacing spaces with a separator, and optionally lowercasing the result.

## Facts

- Endpoint: GET https://klymax402.com/api/slug-generator/api/slugify
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-slug-generator-5aa987e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qo33yVG2XNGvmKYdegSMy

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 klymax402-slug-generator-5aa987e4
```

Example prompt: Can you slugify the text 'My Awesome Blog Post Title' using underscores as the separator and keep it lowercase?

## When to prefer this

Choose this endpoint when you need a quick, no-setup slug conversion for URLs, file names, or identifiers and already have USDC on Base for micro-payments. It's ideal for agents that need programmatic slug generation without managing a dedicated text-processing library or API key.

## Known failure modes

- Missing 'text' parameter returns an error or empty result
- Non-string input for 'text' may cause a type error
- Very long strings may be truncated or cause timeout
- Unsupported separator characters may produce unexpected output

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a slugified version of the input text — special characters removed, words joined by the chosen separator (default hyphen), and optionally lowercased — suitable for use in URLs, file names, or identifiers.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "The text to convert into a slug"
  },
  "lowercase": {
   "type": "boolean",
   "description": "Convert to lowercase (default: true)"
  },
  "separator": {
   "type": "string",
   "description": "Character to use as word separator (default: -)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-slug-generator-5aa987e4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
