# Avedaris Text Slugify

> Avedaris Text Slugify is a paid API for AI agents from api.avedaris.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Converts any input text into a deterministic, lowercase, URL-safe slug string.

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/text-slugify
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avedaris-text-slugify-96b54993
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WnBF-GFOzOm7YG0hBEWT4

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 avedaris-text-slugify-96b54993 -d '<json body>'
```

Example prompt: Turn 'Hello World! This is My Blog Post #42' into a URL-safe slug for me.

## When to prefer this

Choose this endpoint when you need a consistent, reproducible slug from a text string — especially when idempotency matters (same input always yields same slug) and you want a managed API rather than implementing slugification logic yourself. Ideal for agents automating CMS content creation, URL generation pipelines, or e-commerce product catalog management.

## Known failure modes

- Empty or missing text field returns a validation error
- Text exceeding 10,000 characters is rejected
- Payment failure or insufficient USDC balance returns a 402 error
- Non-string input types may cause a schema validation error

## How this service works

AveDaris is the economic coordination layer for autonomous software: discover, route, evaluate, procure, verify, and learn across agent services.

## Output

A deterministic lowercase URL-safe slug string derived from the input text, with spaces and special characters replaced by hyphens or removed, suitable for use in URLs and permalinks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "maxLength": 10000,
   "minLength": 1
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-text-slugify-96b54993/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.avedaris.com](https://www.zero.xyz/host/api.avedaris.com/llms.txt)
