# Slugify & Case Converter

> Slugify & Case Converter is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts any text into a URL slug and also returns snake_case, camelCase, PascalCase, kebab-case, and a safe filename variant

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/slugify
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/slugify-case-converter-1116a481
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6fUfXRscmVb7W-j7T3vjX

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 slugify-case-converter-1116a481
```

Example prompt: Can you slugify the text 'Héllo Wörld: A Guide to Ñoño Cuisine!' and give me the URL slug, snake_case, camelCase, PascalCase, kebab-case, and a safe filename version?

## When to prefer this

Choose this endpoint when you need to convert arbitrary user-supplied text into one or more normalized string formats simultaneously — especially when you need multiple case variants (slug, snake, camel, pascal, kebab, filename) in a single call rather than calling multiple separate utilities. Particularly useful when dealing with accented or non-ASCII characters that need proper folding.

## Known failure modes

- Missing required 'input' query parameter returns an error
- Empty string input may return empty or minimal output
- Extremely long strings may be truncated or rejected
- Non-string or binary input types may cause parsing errors

## How this service works

Slugify: turns any text into a clean URL slug (lowercase, ASCII, hyphen-separated, accents folded), and also returns snake_case, camelCase, PascalCase, kebab-case and a safe filename. $0.01 per call.

## Output

Returns the input text transformed into multiple string formats: a lowercase hyphen-separated URL slug with ASCII folding and accent normalization, plus snake_case, camelCase, PascalCase, kebab-case, and a safe filename string — all in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/slugify-case-converter-1116a481/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
