# AveDaris Entity Normalize

> AveDaris Entity Normalize is a paid API for AI agents from api.avedaris.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Normalizes an entity or organization name into canonical tokens and a canonical form

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/entity-normalize
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avedaris-entity-normalize-67aad620
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3etuIJLCGloM-rVoHCxO6

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-entity-normalize-67aad620 -d '<json body>'
```

Example prompt: Can you normalize the company name 'Acme Corp.' into its canonical form and tokens so I can match it against our database?

## When to prefer this

Choose this endpoint when you need to normalize or canonicalize entity or organization names for deduplication, matching, or standardization purposes — especially in data pipelines where variant name spellings must be resolved to a single canonical form. Prefer this over generic NLP tokenizers when you specifically need entity-aware normalization with both tokens and a canonical string output.

## Known failure modes

- Missing or empty 'name' field returns an error or empty result
- Highly ambiguous or non-standard names may produce unexpected tokenization
- Very long or complex multi-part names may be truncated or partially normalized
- Non-Latin scripts or special characters may not normalize predictably

## How this service works

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

## Output

Returns a JSON object with a 'result' field containing 'tokens' (an array of normalized name tokens, e.g. ['acme']) and 'canonical' (a single canonical string form of the entity name, e.g. 'acme').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "description": "Entity or organization name."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "tokens": [
    "acme"
   ],
   "canonical": "acme"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-entity-normalize-67aad620/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)
