# Vibes-Coded HTTP Headers Fetcher

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

Fetches HTTP response headers for a given URL by making a HEAD request and returning the server response headers as JSON

## Facts

- Endpoint: POST https://vibes-coded.com/api/v1/outcomes/http-headers
- Price: $0.01/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-http-headers-fetcher-0730c105
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vQinxjWrnAsa7DoHaRQDG

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-http-headers-fetcher-0730c105 -d '<json body>'
```

Example prompt: Can you fetch the HTTP response headers for https://example.com and tell me what server it's running and what cache-control settings it has?

## When to prefer this

Use this endpoint when you need a quick, lightweight inspection of a URL's HTTP response headers without downloading the full body — ideal for checking server type, CDN presence, cache policies, content-type, or redirect destination. Prefer this over full-page scraping tools when you only need metadata, not page content.

## Known failure modes

- URL is unreachable or DNS fails — likely returns ok:false with an error message
- URL returns an unexpected status code such as 4xx or 5xx — status_code is still returned but may indicate failure
- Redirect loop causes the request to fail before resolving a final URL
- Malformed URL input results in a validation error
- Payment via HTTP 402/USDC fails, blocking the request entirely

## 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

A JSON object containing: a boolean ok field, the original URL, a headers object with all response headers (server, content-type, cache-control, etc.), the resource type identifier, the final URL after redirects, the HTTP method used (HEAD), and the HTTP status code returned.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "url": "https://example.com",
  "headers": {
   "server": "ECS",
   "content-type": "text/html; charset=UTF-8",
   "cache-control": "max-age=604800"
  },
  "resource": "http-headers",
  "final_url": "https://example.com/",
  "method_used": "HEAD",
  "status_code": 200
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibes-coded-http-headers-fetcher-0730c105/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)
