# Vibes-Coded Page Markdown Endpoint

> Vibes-Coded Page Markdown Endpoint is a paid API for AI agents from vibes-coded.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches and returns the rendered markdown content of a web page, including title, cleaned markdown body, final URL, and word count.

## Facts

- Endpoint: POST https://vibes-coded.com/api/v1/outcomes/page-markdown
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibes-coded-page-markdown-endpoint-d1770d20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Eotsm57YoSt2-ei9c9xFL

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 vibes-coded-page-markdown-endpoint-d1770d20 -d '<json body>'
```

Example prompt: Fetch the content of https://example.com/agents and give me the full markdown text and word count so I can read through it.

## When to prefer this

Choose this endpoint when an AI agent needs to read and process the human-readable text of a specific web page as markdown, especially when you want a cleaned, structured representation rather than raw HTML. Useful for feeding documentation, blog posts, or reference pages into an agent's context window or RAG pipeline. At $0.02 USDC per call it is cost-effective for one-off or moderate-frequency page reads.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — ok field will be false
- Page has no extractable text content (e.g. pure JavaScript-rendered SPA without SSR)
- URL redirects to a blocked or paywalled page
- Malformed or missing URL input returns a 400 error
- Payment not made via x402 protocol returns HTTP 402

## How this service works

Pay-per-call JSON for AI agents: skill search, listing optimization, install plans, productization, and artifact risk scoring. HTTP 402 → USDC. Full skill marketplace on-site.

## Output

Returns a JSON object with ok (boolean success flag), title (page title string), markdown (cleaned markdown body of the page), final_url (resolved URL after any redirects), and word_count (integer count of words in the content).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "title": "Agent Reliability Patterns",
  "markdown": "# Agent Reliability Patterns\n\nRetries should cap at N...",
  "final_url": "https://example.com/agents",
  "word_count": 1820
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibes-coded-page-markdown-endpoint-d1770d20/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibes-coded.com](https://www.zero.xyz/host/vibes-coded.com/llms.txt)
