# Vibe Springs x402 API Health & Compatibility Scanner

> Vibe Springs x402 API Health & Compatibility Scanner is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches a target URL and checks whether it correctly implements the HTTP 402 payment flow, extracting its pricing requirements

## Facts

- Endpoint: GET https://vibesprings.net/api/infra/health-check
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-springs-x402-api-health-compatibility-scanner-3ee6c23d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__shyzgo5gkppCRqExFDkL

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 vibe-springs-x402-api-health-compatibility-scanner-3ee6c23d
```

Example prompt: Can you check if https://example.com/api/data is correctly implementing the x402 HTTP 402 payment flow and tell me what its pricing requirements are?

## When to prefer this

Use this endpoint when you need to programmatically verify whether a third-party URL correctly conforms to the x402 HTTP 402 payment standard, especially when integrating new endpoints into an x402-enabled workflow or debugging payment flow issues. Prefer this over manual inspection when you need structured, machine-readable output about pricing and protocol compliance.

## Known failure modes

- Target URL is unreachable or returns a non-402 status — scan reports incompatibility
- Target URL is malformed or missing — returns validation error
- Target endpoint is behind a firewall or blocks external scanners — timeout or connection refused
- Target implements a partial 402 flow with missing required fields — partial compatibility report
- Rate limiting or upstream errors from vibesprings.net itself

## How this service works

API endpoint health checker and x402 compatibility scanner. Provide target url to fetch and check if it correctly implements the HTTP 402 payment flow, and extract its pricing requirements.

## Output

Returns whether the target URL correctly implements the x402 HTTP 402 payment protocol, along with extracted pricing requirements, payment flow validity details, and relevant response metadata from the scanned endpoint.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Target URL to scan"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "error": null,
  "status": "up",
  "checked_at": "2026-06-26T20:00:00.000Z",
  "latency_ms": 120,
  "target_url": "https://vibesprings.net/api/weather",
  "response_code": 402,
  "processingTime": "135ms",
  "pricing_details": {
   "accepts": [
    {
     "price": "$0.002",
     "scheme": "exact",
     "network": "eip155:8453"
    }
   ]
  },
  "x402_compatible": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-springs-x402-api-health-compatibility-scanner-3ee6c23d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
