# Vealth Agent-Kit Fetcher

> Vealth Agent-Kit Fetcher is a paid API for AI agents from vealth.net, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-13).

Fetches the agent-kit bundle (agent.md and llms.txt) for a given URL, enabling AI agents to discover how to interact with a site programmatically.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/agent-kit
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-agent-kit-fetcher-68083f9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MzxK0EKPxNZnrSW2qnV1g

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 vealth-agent-kit-fetcher-68083f9b -d '<json body>'
```

Example prompt: Can you fetch the Vealth agent-kit for https://example.com — I need the agent.md and llms.txt so I know how to interact with it as an AI agent.

## When to prefer this

Use this endpoint when an AI agent needs to discover how a specific website wants to be interacted with programmatically — specifically to retrieve standardized agent.md and llms.txt discovery files. Prefer this over manual web scraping or generic HTTP fetches when you want structured, agent-ready guidance from a site in a single call.

## Known failure modes

- URL not reachable or returns non-200 — kit fields may be empty or error returned
- Target site has no agent-kit published — returns empty or placeholder kit content
- Invalid URL format in input — request rejected or malformed response
- Payment failure via x402 — endpoint returns 402 before kit is delivered

## How this service works

Find useful work. Build a life from it. Every job shows the place, the task, the proof, and the pay before you begin. Start today and grow toward mastery.

## Output

A JSON object containing a 'kit' field with 'agent.md' (agent instructions markdown) and 'llms.txt' (LLM-readable site description), along with the resolved 'origin' URL and a 'product' identifier string ('agent-kit').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kit": {
   "agent.md": "# Example — agent guide…",
   "llms.txt": "# example.com…"
  },
  "origin": "https://example.com",
  "product": "agent-kit"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-agent-kit-fetcher-68083f9b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vealth.net](https://www.zero.xyz/host/vealth.net/llms.txt)
