# AveDaris Vendor Intelligence

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

Fetches structured intelligence signals about a vendor/company given its name and website URL, including contact details, financial signals, canonical identifiers, and webpage metadata.

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/vendor-intelligence
- Price: $0.023/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avedaris-vendor-intelligence-3f2d1801
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WgL2J_4IBSYdrdun4Jei5

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-vendor-intelligence-3f2d1801 -d '<json body>'
```

Example prompt: Can you pull vendor intelligence on Acme Corp at acmecorp.com — I want their canonical name, any emails, money signals, and URLs you can find from their site?

## When to prefer this

Use this endpoint when you need structured intelligence about a specific vendor or company, especially to enrich records with contact signals, financial mentions, canonical identifiers, and website reachability. Prefer it over generic web scraping when you want normalized, schema-consistent output across many vendors, and when you are operating within an agentic or autonomous economy context where vendor trust and provenance matter.

## Known failure modes

- Website unreachable or returns non-200 status — website.status will reflect the HTTP error code
- Invalid or malformed URL input — request rejected with validation error
- Vendor name too short or too long — schema validation failure
- No signals extractable from website — signals arrays returned empty
- Domain does not resolve — website fetch fails with connection 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

Returns a JSON object with: a vendor object containing canonical name and tokens; signals object with extracted URLs, money references, email addresses, and ISO dates found on the site; website object with HTTP status and final resolved URL; and provenance tracking the originally requested URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Vendor or organization name to normalize into a deterministic canonical identity for the resulting profile."
  },
  "websiteUrl": {
   "type": "string",
   "maxLength": 8192,
   "minLength": 8,
   "description": "Public HTTP(S) vendor website used for DNS, HTTP, page metadata, bounded page text, extracted signals, and provenance evidence."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "vendor": {
    "tokens": [
     "example"
    ],
    "canonical": "example"
   },
   "signals": {
    "urls": [],
    "money": [],
    "emails": [],
    "isoDates": []
   },
   "website": {
    "status": 200,
    "finalUrl": "https://example.com/"
   },
   "provenance": {
    "requestedUrl": "https://example.com/"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-vendor-intelligence-3f2d1801/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)
