# AveDaris URL Normalizer

> AveDaris URL Normalizer 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).

Normalizes an HTTP(S) URL into a canonical, consistently-formatted form with deterministic query parameter ordering.

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/url-normalize
- 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-url-normalizer-70d398cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Kcbk6r3Jpn-BketC_NJ6

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-url-normalizer-70d398cc -d '<json body>'
```

Example prompt: Can you normalize this URL into a canonical form for me: 'https://example.com/path?b=2&a=1&b=duplicate'?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call URL normalization service with no setup overhead, especially in agent pipelines that already use x402 micropayment infrastructure. Ideal for one-off URL canonicalization tasks where standing up a local normalization library is overkill, or when consistent canonical URL forms are needed across heterogeneous agent services.

## Known failure modes

- Invalid or malformed URL input returns an error response
- URL exceeds maximum length of 8192 characters
- Empty string input rejected (minLength: 1)
- Non-HTTP/HTTPS URLs may not be supported
- Network timeout if the service is temporarily unavailable
- Payment failure if USDC balance is insufficient for the $0.001 fee

## 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 JSON object containing a 'result' field with a 'normalized' property holding the canonicalized URL string (e.g. {"result":{"normalized":"https://example.com/a?a=1&b=2"}}). Query parameters are consistently ordered and the URL structure is standardized.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "maxLength": 8192,
   "minLength": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "normalized": "https://example.com/a?a=1&b=2"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-url-normalizer-70d398cc/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)
